Reputation: 1593
We are using a pdflib 8 server - and the standard output is a pdf 1.7 (PDF/A-2) format...
but our customer needs a pdf in a 1.4 (PDF/A-1) format.
The original PDF template is done in a pdf 1.4 format.
I 'm new to the pdflib server, so I have no idea, where i can change the output format from pdf 1.7 to pdf 1.4.
I'm looking for a xml / properties file to change that value!
Any help would be great, thanks!
Upvotes: 1
Views: 2061
Reputation: 326
Please try following
p.begin_document(outfile, "compatibility=1.4")
Upvotes: 2