可以使用iText将pdf连接/合并在一起的函数 - 导致一些问题

时间:2014-04-14 14:09:39

标签: java pdf itext

我正在使用以下代码使用iText将PDF合并在一起:

public static void concatenatePdfs(List<File> listOfPdfFiles, File outputFile) throws DocumentException, IOException {
        Document document = new Document();
        FileOutputStream outputStream = new FileOutputStream(outputFile);
        PdfWriter writer = PdfWriter.getInstance(document, outputStream);
        document.open();
        PdfContentByte cb = writer.getDirectContent();
        for (File inFile : listOfPdfFiles) {
            PdfReader reader = new PdfReader(inFile.getAbsolutePath());
            for (int i = 1; i <= reader.getNumberOfPages(); i++) {
                document.newPage();
                PdfImportedPage page = writer.getImportedPage(reader, i);
                cb.addTemplate(page, 0, 0);
            }
        }
        outputStream.flush();
        document.close();
        outputStream.close();
    }

这通常效果很好!但有一段时间,它会将部分页面旋转90度?有人发生过这种事吗?

我正在查看PDF本身,看看正在翻转的内容有什么特别之处。

2 个答案:

答案 0 :(得分:13)

偶尔会出现错误,因为您使用错误的方法来连接文档。请阅读chapter 6 of my book,您会注意到使用PdfWriter连接(或合并)PDF文档是错误的:

  • 您完全忽略了原始文档中页面的页面大小(假设它们都是A4大小),
  • 您忽略裁剪框(如果存在)
  • 等页面边界
  • 您忽略存储在页面词典中的轮换值
  • 您丢弃原始文档中存在的所有交互性,依此类推。

使用PdfCopy连接PDF,例如参见FillFlattenMerge2示例:

Document document = new Document();
PdfCopy copy = new PdfSmartCopy(document, new FileOutputStream(dest));
document.open();
PdfReader reader;
String line = br.readLine();
// loop over readers
    // add the PDF to PdfCopy
    reader = new PdfReader(baos.toByteArray());
    copy.addDocument(reader);
    reader.close();
// end loop
document.close();

the book中还有其他示例。

答案 1 :(得分:10)

如果有人正在寻找它,使用Bruno Lowagie上面的正确答案,这里的函数版本似乎没有我上面描述的页面翻转问题:

public static void concatenatePdfs(List<File> listOfPdfFiles, File outputFile) throws DocumentException, IOException {
        Document document = new Document();
        FileOutputStream outputStream = new FileOutputStream(outputFile);
        PdfCopy copy = new PdfSmartCopy(document, outputStream);
        document.open();
        for (File inFile : listOfPdfFiles) {
            PdfReader reader = new PdfReader(inFile.getAbsolutePath());
            copy.addDocument(reader);
            reader.close();
        }
        document.close();
}