-
Notifications
You must be signed in to change notification settings - Fork 613
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic support for PDF/A-2 and PDF/A-3 #1250
Comments
Pull requests welcome. Thank you for reporting. |
Hmm, I don't know what exactly is needed. But let me share the issues I found when I was trying to create documents which conform to PDF/UA-1 and PDF/A-3a at the same time - finally, with success, see my work on PDF/UA support for Eclipse BIRT. First of all, there are now constant or whatever to declare conformance with newer PDF/A versions. For my own work, I just added additional constants in one of my files, see file Note: I did not a add a constant for PDF/A-4e, because I think I'm not going to support creating this with BIRT. Next, it was surprisingly difficult to create a PDF file which conforms to PDF/A and PDF/UA at the same time. I think a similar utility method would be a good addition for OpenPDF. The |
+1 to add additional support of PDF/A-version through OpenPDF. |
+1 to add additional support of PDF/A-version through OpenPDF. PDF/A-n-compliant documents are increasingly required in the specifications of the public digital infrastructure, see ZUGFeRD, ePA4ALL,... for Germany. |
Is your feature request related to a problem? Please describe.
PDF/A-3 is needed for ZUGFeRD (Factur-X) electronic invoices.
Besides, VeraPDF complains about PDF files generated with OpenPDF about CIDSet when I try to generate PDF/UA-1 (tagging works BTW).
Describe the solution you'd like
Constants in
PDFWriter.java
for PDF/A-2a, -2b, -2u and PDF/A-3a, -3b, 3u.Similar to the existing constants for PDF/A-1 and with corresponding code adaptions where the existing PDF/A-1 constants are used
(PdfXConformance.java, XmpWriter.java, PdfXConformanceImp, TrueTypeFontUnicode.java).
Describe alternatives you've considered
I don't think there any alternative solutions, except maybe post-processing the PDF with Apache PDFBox ;-).
Your real name
Henning von Bargen
Additional context
I'm working on adding PDF/UA support to Eclipse BIRT.
The text was updated successfully, but these errors were encountered: