1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | procedure convertPDFtoTIFF(); var DC : Variant; RVal : Integer; docToConvert : String; begin docToConvert := 'c:\users\public\test.pdf'; try DC := CreateOleObject('Neevia.docCreator'); DC.setParameter('DocumentOutputFormat', 'TIFF'); DC.setParameter('DocumentOutputName', 'testTIFF_Delphi'); DC.setParameter('DocumentOutputFolder', 'c:\users\public\'); DC.setParameter('TIFFType', 'tiff24lzw'); DC.setParameter('DocumentResolution', '150'); DC.setParameter('MPTiff', 'True'); DC.setInputDocument(docToConvert); RVal := DC.create; if (RVal <> 0) then ShowMessage('Error while creating document!!! Code: '+IntToStr(RVal)) else ShowMessage('Document Created !!!'); finally DC := Unassigned; end; end; |