pdfa

Ghostscript 9.07 : PDF/X-1a:2001 : PDF/X output intent is missing

£可爱£侵袭症+ 提交于 2019-12-22 18:05:32
问题 Could you please tell me how to embedded the PDF/X output intent. When I check with preflight I reported that PDF/X-1a:2001 : PDF/X output intent is missing in the PDF file. Problem faced in the PDF file: 1) PDF/X-1a:2001 : PDF/X version is not PDF/X-1a:2001 2) PDF/X-1a:2001 : PDF/X output intent is missing 3) PDF/X-1a:2001 : Document trapped flag is Unknown 4) PDF/X-1a:2001 : Text object uses invalid characters (.notdef glyphs) GS Command: gs -dPDFX -dBATCH -dNOPAUSE -dNOOUTERSAVE \

How can I test if a PDF document is PDF/A compliant using iTextSharp?

我的梦境 提交于 2019-12-20 07:40:03
问题 I have a existing PDF file and with iTextSharp I want to test if it is PDF/A compliant. I don't want convert or create a file, just read and check if it is a PDF/A. I have not tried anything because I did not find any methods or properties of the class PdfReader of iTextSharp, saying that the PDF is PDF/A. For now it would be enough to know how to verify that the document claims to be PDF/A compatible Thanks Antonio 回答1: After a long search i tried this way and seems to work: Dim reader As

Convert PDF to PDF/A3 or PDF/A-1 to PDF/A-3

时间秒杀一切 提交于 2019-12-19 10:05:25
问题 I'm testing iTextSharp to generate ZUGFeRD-Files. My first step was to generate a ZUGFeRD conform file from an existing PDF/A-3 file. This was successfull by using PDFACopy and creating the necessary PDFFileSpecification. The next step would be to generate a PDF/A-3 file from an existing PDF or PDF/A-1 file and this is the hard part. First, when I'm trying to use PDFACopy in combination with a regular PDF (not PDF/A) im getting an error that PDFACopy can only be used with PDF/A-conform files.

PDFbox Preflight PDF/A-1b check not working properly in java version 1.8

半腔热情 提交于 2019-12-11 03:56:37
问题 I am using PDFBOX Preflight to validate pdf document to check whether it is in PDF/A-1b format or not . It works perfectly on java 1.7 but when I run the code in java 1.8 i get following errors 2.4.3 : Invalid Color space, DestOutputProfile is missing 2.4.3 : Invalid Color space, DestOutputProfile is missing 2.4.3 : Invalid Color space, DestOutputProfile is missing 7.11 : Error on MetaData I am using pdfbox 1.8.8 and preflight 1.8.3 Following is the code that I am using for validating the

How to programmaticaly construct PDFs with PDF/A format

谁说我不能喝 提交于 2019-12-11 01:48:24
问题 I need to write a NET application that will take various data from databases and construct a PDF which must be in PDF/A format because of the companies standards. So far I have looked at PDFSharp and iTextSharp I see a topic in PDFSharp forums http://forum.pdfsharp.net/viewtopic.php?p=1293#p1293 dicussing this very topic and they have said years ago that PDF/A support is in their todo list, but nothing came of it. I cannot find any information about PDF/A format using these libraries. Do I

Ghostscript PDF to PDF/A conversion font issues

本小妞迷上赌 提交于 2019-12-08 06:51:05
问题 I am exploring tools to convert PDF documents to PDF/A. Ghostscript seems to give out of the box support for such a conversion. One issue seems to be that some true type fonts that are a part of the original PDF document are not converted correctly. If I copy a text from the converted PDF/A document, and paste it in notepad, the copied text appears to be garbled text. The original document text can be copied to notepad just fine. I am using the following script: gswin64 -dPDFA -dBATCH

How to know if a document claims to be in PDF/A using itext

一世执手 提交于 2019-12-07 07:15:04
问题 I would check at least if a document claims that it's conformant to PDF/A. How can I do that using iText? 回答1: Ah. The PDF/A spec contains The Answer (which doesn't do you much good unless someone paid money to get it). You could dig the same info out of iText's source... which may actually be easier. Reading that spec is worth avoiding if at all possible. ;) First of all, iText will get you the metadata xml, but the "xmp" package is meant for reading XMP only so that iText can modify it as

Convert PDF files to PDF/A via Ghostscript

烂漫一生 提交于 2019-12-06 09:32:12
问题 I'd like to convert arbitrary PDF files to PDF/A with Ghostscript 9.15. Is Ghostscript able to create PDF/A-3b conformant PDFs? There is no parameter which represents a PDF/A conformance level, so I assume there is no possibility. Or is there anything I have overlooked? I was following a blog post where a Windows batch file is used to convert from PDF to PDF/A (see http://www.mcbsys.com/techblog/2013/04/batch-convert-pdf-to-pdfa/). The gs invokation in the batch is: "%gs_path%\gswin64c" ^

Ghostscript 9.07 : PDF/X-1a:2001 : PDF/X output intent is missing

一世执手 提交于 2019-12-06 07:41:53
Could you please tell me how to embedded the PDF/X output intent. When I check with preflight I reported that PDF/X-1a:2001 : PDF/X output intent is missing in the PDF file. Problem faced in the PDF file: 1) PDF/X-1a:2001 : PDF/X version is not PDF/X-1a:2001 2) PDF/X-1a:2001 : PDF/X output intent is missing 3) PDF/X-1a:2001 : Document trapped flag is Unknown 4) PDF/X-1a:2001 : Text object uses invalid characters (.notdef glyphs) GS Command: gs -dPDFX -dBATCH -dNOPAUSE -dNOOUTERSAVE \ -sProcessColorModel=DeviceCMYK -sDEVICE=pdfwrite \ -sOutputFile=GS_Test.pdf PDFA_def.ps Test.ps PDFA_def.ps : %

How to know if a document claims to be in PDF/A using itext

心不动则不痛 提交于 2019-12-05 14:15:12
I would check at least if a document claims that it's conformant to PDF/A. How can I do that using iText? Ah. The PDF/A spec contains The Answer (which doesn't do you much good unless someone paid money to get it). You could dig the same info out of iText's source... which may actually be easier. Reading that spec is worth avoiding if at all possible. ;) First of all, iText will get you the metadata xml, but the "xmp" package is meant for reading XMP only so that iText can modify it as needed before saving it out again. It doesn't actually contain any "get" functions. Replace, set, save... no