Hi Jeff
You can do it as follows:
// Change the compression method for a TIFF file
MBitmap := TIEMultiBitmap.Create();
MBitmap.LoadFromFile( 'C:\MyImage.pdf' );
MBitmap.Params[ 0 ].TIFF_Compression := ioTIFF_LZW;
MBitmap.DuplicateCompressionInfo();
MBitmap.SaveToFile( 'C:\OutImage.tiff' );
MBitmap.Free;
http://www.imageen.com/help/TIEMultiBitmap.DuplicateCompressionInfo.html
You don't need to actively "convert" the document, it saves in whatever format you specify, e.g. here because you are saving with the extension .tiff, it saves as a TIFF file.
Nigel
Xequte Software
www.imageen.com