PDF/A

The PDF Creator enables you to create secure PDF documents and to view, print and process existing PDF documents.
If you have any questions about the installation and usage of the PDF Creator please post them here.
Post Reply
italital
Posts: 8
Joined: Tue Oct 16 2007
Location: Italy

PDF/A

Post by italital »

I am trying to generate a PDF/A with 3.03e Creator using this code:


Private Sub Command1_Click()
Dim PDFCreactiveX As Object

Set PDFCreactiveX = CreateObject("PDFCreactiveX.PDFCreactiveX")

With PDFCreactiveX
.SetLicenseKey "xxx", "11111"

.Open "TestPDF_A.pdf", ""

.ObjectAttribute("Document", "FileSaveOption") = 4
.ObjectAttribute("Document", "Metadata") = 3


.CreateObject 2, "Frame 1"

.ObjectAttribute("Frame 1", "Left") = 200
.ObjectAttribute("Frame 1", "Top") = 200
.ObjectAttribute("Frame 1", "Right") = 600
.ObjectAttribute("Frame 1", "Bottom") = 400
.ObjectAttribute("Frame 1", "Text") = "Hello"
.ObjectAttributeStr "Frame 1", "TextFont", "Arial, 20, 700, 0, 0"

.Save "TestPDF_A.PDF", 4
End With
End Sub


I’ve tested the resulting doc both with Acrobat 8.10 (preflight option verify) and it’s compliant but with Acrobat 9.00 it’s NOT compliant.


I need to generate a PDF/A compliant with Acrobat 9.00
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Re: PDF/A

Post by Joan »

please send us the document to support@amyuni.com to check it.
Custom Brand the Amyuni PDF Printer Driver http://www.amyuni.com/en/developer/branding/index.html

Amyuni PDF Converter tested for true PDF performance. View results - http://www.amyuni.com/benchmark
Post Reply