PdfCopy 和 PdfACopy 之间的 iText 区别

iText difference between PdfCopy and PdfACopy

我编写了一个函数,使用 iText 5.5.13(使用 iText tutorials 中的说明)将文件作为附件嵌入到 PDF/A-3a 文档中。

如果我使用 class PdfCopy 附加文件,结果是一个正确的 PDF 文件,但它并不声称是 PDF/A(也许它符合所有要求,但它不别说了)。

如果我使用 PdfACopy 做同样的事情,我会得到一个错误构建的文档:

InvalidPdfException: Rebuild failed: trailer not found.; Original message: PDF startxref not found.

这里是我的代码稍微简化了一点。注释是使用 PdfCopy 代替的行。

public static File embedFile(File inputPdf) {

    File outputPdf = new File("./test.pdf");

    PdfReader reader = new PdfReader(inputPdf.getAbsolutePath());
    Document document = new com.itextpdf.text.Document();
    OutputStream os = new FileOutputStream(outputPdf.getAbsolutePath());
    PdfACopy copy = new PdfACopy(document, os, PdfAConformanceLevel.PDF_A_3A); // Output doc doesn't work
    // PdfCopy copy = new PdfCopy(document, os); // Output doc works but doesn't claim to be PDF/A

    document.open();
    copy.addDocument(reader);

    // Include attachment (extactly as in the sample tutorial)
    PdfDictionary parameters = new PdfDictionary();
    parameters.put(PdfName.MODDATE, new PdfDate());
    PdfFileSpecification fileSpec = PdfFileSpecification.fileEmbedded(
        writer, "./src/main/resources/com/itextpdf/invoice.xml",
        "invoice.xml", null, "application/xml", parameters, 0);
    fileSpec.put(new PdfName("AFRelationship"), new PdfName("Data"));
    writer.addFileAttachment("invoice.xml", fileSpec);
    PdfArray array = new PdfArray();
    array.add(fileSpec.getReference());
    writer.getExtraCatalog().put(new PdfName("AF"), array);

    os.flush();
    reader.close();
    document.close();
    os.close();
    copy.close();

    return outputPdf;
}

输入文件已经是一个 PDF/A-3a 文档,所以我想我不需要重新定义所有必需的东西,比如嵌入字体、输出意图...

在使用 PdfACopy 时是否可能缺少一个强制性的步骤,而 PdfCopy 不需要?

试试 iText 7 会有帮助吗?

非常感谢!

正如 Bruno Lowagie 在评论中指出的那样,iText 7 可以实现这一点。这里的功能可以帮助某人:

public static File embedFile(File inputPdf, File embeddedFile, String embeddedFileName, String embeddedFileMimeType)
        throws IOException {

    File outputPdf = new File("./test.pdf");

    PdfReader reader = new PdfReader(inputPdf.getAbsolutePath());
    PdfWriter writer = new PdfWriter(outputPdf.getAbsolutePath());
    PdfADocument pdfDoc = new PdfADocument(reader, writer);

    // Add attachment
    PdfDictionary parameters = new PdfDictionary();
    parameters.put(PdfName.ModDate, new PdfDate().getPdfObject());
    PdfFileSpec fileSpec = PdfFileSpec.createEmbeddedFileSpec(pdfDoc, embeddedFile.getAbsolutePath(), embeddedFileName,
            embeddedFileName, new PdfName(embeddedFileMimeType), parameters, PdfName.Data);
    fileSpec.put(new PdfName("AFRelationship"), new PdfName("Data"));
    pdfDoc.addFileAttachment(embeddedFileName, fileSpec);
    PdfArray array = new PdfArray();
    array.add(fileSpec.getPdfObject().getIndirectReference());
    pdfDoc.getCatalog().put(new PdfName("AF"), array);

    pdfDoc.close();
    reader.close();
    writer.close();

    return outputPdf;

}