1

PDFを読み、元のPDFの複数のコピーを含むPDFを出力しています。PDFBoxiTextの両方で同じことをしてテストします。各ページを個別に複製すると、iTextの出力ははるかに小さくなります。

質問: PDFBoxでこれを行う別の方法があり、出力PDFが小さくなります。

入力ファイルの例の1つとして、両方のツールを使用して出力に2つのコピーを生成します。

  • 元のPDFサイズ:30K
  • PDFBox(v 1.7.1)で生成されたPDF:84K
  • iText(v 5.3.4)で生成されたPDF:35K

PDFBoxのJavaコード(エラー処理を行って申し訳ありません)。入力を何度も読み取り、全体として複製する方法に注目してください。

PDFMergerUtility merger = new PDFMergerUtility();
PDDocument workplace = null;
try {
    for (int cnt = 0; cnt < COPIES; ++cnt) {
        PDDocument document = null;
        InputStream stream = null;
        try {
            stream = new FileInputStream(new File(sourceFileName));
            document = PDDocument.load(stream);
            if (workplace == null) {
                workplace = document;
            } else {
                merger.appendDocument(workplace, document);
            }
        } finally {
            if (document != null && document != workplace) {
                document.close();
            }
            if (stream != null) {
                stream.close();
            }
        }
    }

    OutputStream out = null;
    try {
        out = new FileOutputStream(new File(destinationFileName));
        workplace.save(out);
    } finally {
        if (out != null) {
            out.close();
        }
    }
} catch (COSVisitorException e1) {
    e1.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
} finally {
    if (workplace != null) {
        try {
            workplace.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

iTextでそれを行うためのコード。入力ファイルをページごとにロードし、各ページを出力に転送する方法に注目してください。

Document document = null;
PdfReader reader = null;
InputStream inputStream = null;
FileOutputStream outputStream = null;
try {
    inputStream = new FileInputStream(new File(sourceFileName));
    outputStream = new FileOutputStream(new File(destinationFileName));
    document = new Document();
    PdfCopy copy = new PdfSmartCopy(document, outputStream);
    document.open();
    reader = new PdfReader(inputStream);
    // loop over the pages in that document
    int pdfPageNo = reader.getNumberOfPages();
    for (int page = 0; page < pdfPageNo;) {
        PdfImportedPage onePage = copy.getImportedPage(reader, ++page);
        // duplicate each page N times
        for (int i = 0; i < COPIES; ++i) {
            copy.addPage(onePage);
        }
    }
    copy.freeReader(reader);
} catch (DocumentException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
} finally {
    if (reader != null) {
        reader.close();
    }
    if (document != null) {
        document.close();
    }
    try {
        if (inputStream != null) {
            inputStream.close();
        }
        if (outputStream != null) {
            outputStream.close();
        }
    } catch (IOException e) {
        // do nothing
    }
}

両方ともこれに囲まれています:

public class Duplicate {

    /** The original PDF file */
    private static final String sourceFileName = "PDF_CI_US2CA.pdf";

    /** The resulting PDF file. */
    private static final String destinationFileName = "itext_output.pdf";
    private static final int COPIES = 2;

    public static void main(String[] args) {
            ...
        }
}
4

1 に答える 1

9

次のソリューションを使用して、多くの重複ページを含むPDFファイルを作成し、ストレージへの影響を最小限に抑えることができました。

PDDocument samplePdf = null;
try {
    samplePdf = PDDocument.load(PDF_PATH);
    PDPage page = (PDPage) samplePdf.getDocumentCatalog().getAllPages().get(0); 

    for(int i = 0; i < COPIES; i++) {
        samplePdf.importPage(page);
    }

    samplePdf.save(SAVE_PATH); //$NON-NLS-1$

} catch (IOException e) {
    e.printStackTrace();
} catch (COSVisitorException e) {
    e.printStackTrace();
}

最初の試みで使用しsamplePdf.addPage(page)ましたが、期待どおりに機能しませんでした。addしたがって、明らかにと関数には違いがありimportます。理由を確認するには、ソースまたはドキュメントを確認する必要があります。とにかく、これはあなたがPDFBoxであなたのニーズのための解決策を考案するのを助けるはずです。

于 2013-09-27T20:48:00.537 に答える