我正在使用以下代码使用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本身,看看正在翻转的内容有什么特别之处。
答案 0 :(得分:13)
偶尔会出现错误,因为您使用错误的方法来连接文档。请阅读chapter 6 of my book,您会注意到使用PdfWriter
连接(或合并)PDF文档是错误的:
使用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();
}