合并文档以在iText(Java)中创建TOC

时间:2015-05-22 06:04:09

标签: java pdf-generation itext tableofcontents

当使用需要目录的iText创建文档时,我通常使用一个过程,在内存中创建主文档,在内存中创建TOC作为单独的文档(使用虚拟链接),将它们合并为第三个文档,然后使用PdfStamper将链接协调到文档中并将其写入文件。

这适用于所有版本的iText,除了最新版本(5.5.6)。我将包含一个执行此过程的简单程序(真正的程序要复杂得多)。使用iText 5.5.5或更早版本运行时,它会创建所需的文档(2页,第一页包含提供打开第二页的链接的文本)。使用5.5.6时,对makeRemoteNamedDestinationsLocal的调用会导致异常 com.itextpdf.text.pdf.PdfDictionary无法转换为com.itextpdf.text.pdf.PdfArray

由于这一直一直有效,直到最新版本,我怀疑这可能是最新版本中的一个错误。这是一个错误,还是我做错了什么?如果不是bug,我该怎么办?此外,通常如何为iText提交错误报告?从网站上看,他们希望将问题作为报告提交到这里。

import com.itextpdf.text.pdf.*;
import com.itextpdf.text.pdf.draw.*;
import java.io.*;

// WORKS CORRECTLY USING itext version 5.5.5
// FAILS WITH 5.5.6
// CAUSES AN EXCEPTION 
// "com.itextpdf.text.pdf.PdfDictionary cannot be cast to com.itextpdf.text.pdf.PdfArray"
// with makeRemoteNamedDestinationsLocal()
public class testPdf {
    public static void main (String[] args) throws Exception {
        // Create simple document
        ByteArrayOutputStream main = new ByteArrayOutputStream();
        Document doc = new Document(new Rectangle(612f,792f),54f,54f,36f,36f);
        PdfWriter pdfwrite = PdfWriter.getInstance(doc,main);
        doc.open();
        doc.add(new Paragraph("Testing Page"));
        doc.close();

        // Create TOC document
        ByteArrayOutputStream two = new ByteArrayOutputStream();
        Document doc2 = new Document(new Rectangle(612f,792f),54f,54f,36f,36f);
        PdfWriter pdfwrite2 = PdfWriter.getInstance(doc2,two);      
        doc2.open();
        Chunk chn = new Chunk("<<-- Link To Testing Page -->>");
        chn.setRemoteGoto("DUMMY.PDF","page-num-1");
        doc2.add(new Paragraph(chn));
        doc2.close();

        // Merge documents
        ByteArrayOutputStream three = new ByteArrayOutputStream();
        PdfReader reader1 = new PdfReader(main.toByteArray());
        PdfReader reader2 = new PdfReader(two.toByteArray());
        Document doc3 = new Document();
        PdfCopy DocCopy = new PdfCopy(doc3,three);
        doc3.open();
        DocCopy.addPage(DocCopy.getImportedPage(reader2,1));
        DocCopy.addPage(DocCopy.getImportedPage(reader1,1));
        DocCopy.addNamedDestination("page-num-1",2,new PdfDestination(PdfDestination.FIT));
        doc3.close();

        // Fix references and write to file
        PdfReader finalReader = new PdfReader(three.toByteArray());
        // Fails on this line
        finalReader.makeRemoteNamedDestinationsLocal();
        PdfStamper stamper = new PdfStamper(finalReader,new FileOutputStream("Testing.pdf"));
        stamper.close();    
    }
}

1 个答案:

答案 0 :(得分:0)

您检测到了iText 5.5.6中引入的错误。这已在我们的存储库中修复:

enter image description here

感谢您报告此错误。你可以在github上找到修复程序:https://github.com/itext/itextpdf/commit/eac1a4318e6c31b054e0726ad44d0da5b8a720c2