Hi, We are using the below code to convert from PDF to TIFF.
Dim PdDoc As Acrobat.CAcroPDDoc
Dim jso AsObject
PdDoc = CreateObject("AcroExch.PDDoc")
If PdDoc.Open(sFiles(iFileCnt)) Then
jso = PdDoc.GetJSObject
IfNot jso IsNothingThen
jso.SaveAs(sFilePath & "\FS.tif", "com.adobe.acrobat.tiff")
jso = Nothing
PdDoc.Close()
PdDoc = Nothing
EndIf
EndIf
Thanks
Prabhu