2

我一直在尝试根据其大小将一个大 PDF 文件拆分为多个 pdf 文件。我能够拆分它,但它只创建一个文件,其余文件数据丢失。意味着它不会创建多个文件来拆分它。有人可以帮忙吗?这是我的代码

public static void main(String[] args) {
    try {
        PdfReader Split_PDF_By_Size = new PdfReader("C:\\Temp_Workspace\\TestZip\\input1.pdf");
        Document document = new Document();
        PdfCopy copy = new PdfCopy(document, new FileOutputStream("C:\\Temp_Workspace\\TestZip\\File1.pdf"));
        document.open();

        int number_of_pages = Split_PDF_By_Size.getNumberOfPages();
        int pagenumber = 1; /* To generate file name dynamically */
        // int Find_PDF_Size; /* To get PDF size in bytes */
        float combinedsize = 0; /* To convert this to Kilobytes and estimate new PDF size */
        for (int i = 1; i < number_of_pages; i++ ) {
            float Find_PDF_Size;
            if (combinedsize == 0 && i != 1) {
                document = new Document();
                pagenumber++;
                String FileName = "File" + pagenumber + ".pdf";
                copy = new PdfCopy(document, new FileOutputStream(FileName));
                document.open();
            }

            copy.addPage(copy.getImportedPage(Split_PDF_By_Size, i));
            Find_PDF_Size = copy.getCurrentDocumentSize();
            combinedsize = (float)Find_PDF_Size / 1024;
            if (combinedsize > 496 || i == number_of_pages) {
                document.close();
                combinedsize = 0;
            }
        }

        System.out.println("PDF Split By Size Completed. Number of Documents Created:" + pagenumber);                        
    }
    catch (Exception i)
    {
        System.out.println(i);
    }
}

}

4

1 回答 1

0

(顺便说一句,如果您也用itext标记了您的问题,那就太好了。)

PdfCopy用于在页面导入源切换或关闭PdfReaders时关闭它导入的页面。这是由于最初的预期用例是从多个源 PDF 创建一个目标 PDF 以及许多用户忘记关闭其.PdfReaderPdfCopyPdfReaders

因此,在您关闭第一个目标之后PdfCopyPdfReader也将关闭,并且不会提取更多页面。

如果我正确解释最近签入到 iText SVN 存储库,则此隐式关闭PdfReaders正在从代码中删除。因此,使用下一个iText版本之一,您的代码可能会按预期工作。

于 2012-11-14T23:51:37.480 回答