pdfa

Free Java library for converting existing PDF to PDF/A [closed]

强颜欢笑 提交于 2019-11-27 10:55:14
问题 I am trying to convert PDF to PDF/A. Currently I can do this using OpenOffice pdf viewer plugin together with Jodconverter 2. But this is pretty cumbersome to do. Does anybody know of any open source / free Java libraries I can use to do this? I have found these open source libraries so far, but none of which has support for converting PDF to PDF/A iText gnujpdf PDF Box FOP JFreeReport PJX JPedal PDFjet jPod PDF Renderer UPDATE Seems like Apache FOP has ability to convert a document (not a

How to use ghostscript to convert PDF to PDF/A or PDF/X?

删除回忆录丶 提交于 2019-11-27 06:53:26
Is there a way to use ghostscript to convert PDF to PDF/A or PDF/X? I know it can be used to convert PDF to images, but I don't know if it can be used to convert PDF/A. What parameters should I use? This is to convert a pdf document (not pdf/a) into pdf/a: gs -dPDFA -dBATCH -dNOPAUSE -dUseCIEColor -sProcessColorModel=DeviceCMYK -sDEVICE=pdfwrite -sPDFACompatibilityPolicy=1 -sOutputFile=output_filename.pdf input_filename.pdf Hope this will help some one! @danio, @imgen: Even recently released documentation pages on PDF/X (standardized Prepress requirements) and PDF/A (standardized Archiving

How can I test a PDF document if it is PDF/A compliant? [closed]

孤人 提交于 2019-11-26 22:42:48
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . We write a software that create PDF files. How we can check if the resulting pdf files are PDF/A compatibility? Are there any test suite for it available? It will be also nice to know if some other product like Open-Office produce PDF/A compatibility files. 回答1: A list of PDF/A validators is on the pdfa.org web

iText 5 HTML+CSS to PDF/A-2 : Helvetica font not embedded error

匆匆过客 提交于 2019-11-26 18:01:40
The following code is being used for converting HTML file with CSS to PDF/A-2 using iText5 (this code is from the example provided online): public static final String HTML = "D:\\PDFA2\\html\\sample.html"; public static final String CSS = "D:\\PDFA2\\html\\sample.css"; public static final String DEST = "D:\\PDFA2\\html\\sample.pdf"; public void createPdf(String file) throws IOException, DocumentException { Document document = new Document(); PdfAWriter writer = PdfAWriter.getInstance(document, new FileOutputStream(file),PdfAConformanceLevel.PDF_A_2A); writer.setInitialLeading(12.5f); document

How to use ghostscript to convert PDF to PDF/A or PDF/X?

北战南征 提交于 2019-11-26 12:38:52
问题 Is there a way to use ghostscript to convert PDF to PDF/A or PDF/X? I know it can be used to convert PDF to images, but I don\'t know if it can be used to convert PDF/A. What parameters should I use? 回答1: This is to convert a pdf document (not pdf/a) into pdf/a: gs -dPDFA -dBATCH -dNOPAUSE -dUseCIEColor -sProcessColorModel=DeviceCMYK -sDEVICE=pdfwrite -sPDFACompatibilityPolicy=1 -sOutputFile=output_filename.pdf input_filename.pdf Hope this will help some one! 回答2: Hope this answer helps

How can I export report to PDF/A-1a, PDF/A-1b?

白昼怎懂夜的黑 提交于 2019-11-26 11:24:07
问题 Generating PDF/A in jasper-report, contains numerous pitfalls and is not supported in some versions of jasper-report. This is why I have decided to pass this Q uestion- A nswer post, indicating the steps and library version necessary to export a simple report with a graph to PDF/A Sample data (usersRep.csv) +----------------+--------+ | User | Rep | +----------------+--------+ | Jon Skeet | 854503 | | Darin Dimitrov | 652133 | | BalusC | 639753 | | Hans Passant | 616871 | | Me | 5640 | +-----