How can i check (and additionally create) PDF-A 1b compliant PDF documents using open source tools? Does anybody know an open source tool? Thanks in advance...
Asked
Active
Viewed 8,322 times
5
-
Duplicate of [Convert to PDF/A and check compliance under Linux](http://stackoverflow.com/questions/464539/convert-to-pdf-a-and-check-compliance-under-linux) – Mechanical snail Aug 16 '12 at 01:27
-
Or of http://stackoverflow.com/questions/569129/how-can-i-test-a-pdf-document-if-it-is-pdf-a-compliant – Mechanical snail Apr 21 '13 at 21:22
2 Answers
1
Try with http://www.lowagie.com/iText/. It can recognize the version of the loaded PDF and can create PDF as well. It is open source, but I'm not sure do they support exactly the version of the PDF you mention.

m_pGladiator
- 8,462
- 7
- 43
- 61
-
@m_pGladiator: *"checking the version of the loaded PDF"* amounts to reading the first 8 bytes of a file only. I can create a PDF-1.7 easily and declare it to be PDF-1.2 by changing 1 Byte in the first line so it reads `%PDF-1.2`. This does not mean it indeed limits itself to the file format features of Acrobat 3 now. Same for PDF/A-1b: a file must be able to successfully pass a substantial compliance test, otherwise it is a fake PDF/A file, not a valid one. – Kurt Pfeifle Aug 16 '10 at 09:00