Save tiff file in pdf format.
Save tiff file in pdf format.
Rate Save tiff file in pdf format.
(1(1 Vote))
'Save tiff file in pdf format. Need full Adobe Acrobat any version.
'Add Adobe Acrobat Type Library to References.
Dim bOK As Boolean
On Error GoTo errmsg
Dim avDoc As CAcroAVDoc
Dim pdDoc As CAcroPDDoc
Set avDoc = CreateObject("AcroExch.AVDoc")
bOK = avDoc.Open("C:\test.tif, "Adobe Acrobat")
Set pdDoc = avDoc.GetPDDoc
bOK = pdDoc.Save(1, "C:\test.pdf")
avDoc.Close (False)
Exit Sub
errmsg:
MsgBox Err.Description
End Sub
Save tiff file in pdf format. Comments
No comments yet — be the first to post one!
Post a Comment