Hi Ole
This works well for me:
// Convert a multi-page PDF file to TIFF
// Ensure iepdf.dll is in the EXE folder
mbmp := TIEMultiBitmap.Create( 'D:\multi.pdf' );
mbmp.Params[0].TIFF_Compression := ioTIFF_LZW;
mbmp.DuplicateCompressionInfo();
mbmp.Write( 'D:\Converted.TIFF' );
mbmp.Free;
ioTIFF_JPEG should be good for color PDF files. It gives better compression than ioTIFF_LZW, without significant degredation.
Nigel
Xequte Software
www.imageen.com