Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
Hi All,

I am using Acrobat Pro dlls and trying to convert TIF to PDF or PDF/A . none of the methods working for me. FIND THE ONE OF THE METHOD I USED... IT'S NOT WORKING FOR ME.

i have licenced version of Acrobat Pro 9 .

dlls refering for the same are acrobat, Acrobataccesslib,Pdfmaker.


VB
Imports System
Imports System.IO
Imports System.Drawing.Printing
Imports System.Drawing
Imports System.Configuration
Imports System.Threading
Imports Acrobat 


Dim AcroApp As CAcroApp
Dim AVDoc As CAcroAVDoc
Dim PDDoc As CAcroPDDoc
Dim IsSuccess As Boolean
Dim FileName As String
Dim Path As String

AcroApp = CreateObject("AcroExch.App")
AVDoc = CreateObject("AcroExch.AVDoc")

FileName = "C:\Test.TIF"

Path = "C:/PdfConvert"

Call AVDoc.Open(FileName, "")

AVDoc = AcroApp.GetActiveDoc

If AVDoc.IsValid Then

PDDoc = AVDoc.GetPDDoc

' Fill in pdf properties.
PDDoc.SetInfo("Title", "My Title")
PDDoc.SetInfo("Author", "The Author")
PDDoc.SetInfo("Subject", "The Subject")
PDDoc.SetInfo("Keywords", "Keywords")

If PDDoc.Save(1 Or 4 Or 32, _
Path & "\pdf\convertedfile.pdf") <> True Then
MsgBox("Failed to save " & FileName)
End If

PDDoc.Close()

End If

'Close the PDF
AVDoc.Close(True)
AcroApp.Exit()

'Cleanup
PDDoc = Nothing
AVDoc = Nothing
AcroApp = Nothing


can anyone have knowledge on this please share it with me. it's little bit urgent.
et me know if you need any additioanl details from my side.

thanks in advance.
Posted
Updated 15-Jan-12 21:53pm
v2
Comments
Sergey Alexandrovich Kryukov 16-Jan-12 1:40am    
Problem is not explained.
--SA
Richard MacCutchan 16-Jan-12 3:55am    
Have you checked the documentation to see that all your library calls are correct? Have you checked whether any error responses are returned from these library calls? What exactly do you mean by "NOT WORKING FOR ME"?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900