在不同的pdf页面中分割pdf

时间:2011-04-12 22:20:51

标签: java pdf

我正在尝试使用以下库导入com.itextpdf以便: 从一个pdf文档每页创建一个新的pdf文档。

例如对于a.pdf这是3页我正在创建a1.pdf a2.pdf和a3.pdf其中a1是等等的第一页......

由于某些原因,创建的输出不正确。如果a.pdf是一个页面,则新页面将作为不同的哈希值创建...感谢任何帮助

public static void onePage(int num, String to, PdfReader reader) throws DocumentException,IOException {
    Document document = new Document(PageSize.A4);

    PdfWriter writer = PdfWriter.getInstance(document,new FileOutputStream(to));
    document.open();

    PdfImportedPage page;
    page = writer.getImportedPage(reader, num);
    Image instance = Image.getInstance(page);

    instance.setAbsolutePosition(0, 30);

    document.add(instance);

    document.close();

}
public static void makePages(String name) throws IOException, DocumentException{

    PdfReader reader = new PdfReader(name+".pdf");
    int n = reader.getNumberOfPages();
    for(int i=1; i<=n;i++){
        onePage(i,  name+i+".pdf", reader);
    }
}

3 个答案:

答案 0 :(得分:1)

两个PDF的哈希值很可能只是不同,因为PDF文档包含许多其他元数据,当您将单个页面复制到新PDF时,这些元数据可能不会被完全复制。这可能与关于PDF生成内容和时间的信息一样微不足道。如果只有一个页面,最简单的方法就是根本不拆分PDF。

答案 1 :(得分:1)

使用PDFBox将PDF页面转换为单独的页面。

Apache PDFBox latest releases下载PDFBox jar,

支持在Java程序pdfbox-1.8.3.jarcommons-logging-1.1.3.jar

下执行的jar
import java.io.File;
import java.util.List;

import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.PDPage;
/**
 * 
 * @author udaykiran.pulipati
 *
 */

@SuppressWarnings("unchecked")
public class ExtractPagesFromPdfAndSaveAsNewPDFPage {
    public static void main(String[] args) {
        try {
            String sourceDir = "C:/PDFCopy/04-Request-Headers.pdf";
            String destinationDir = "C:/PDFCopy/";
            File oldFile = new File(sourceDir);
            String fileName = oldFile.getName().replace(".pdf", "");
            if (oldFile.exists()) {
                File newFile = new File(destinationDir);
                if (!newFile.exists()) {
                    newFile.mkdir();
            }

            PDDocument document = PDDocument.load(sourceDir);
            List<PDPage> list = document.getDocumentCatalog().getAllPages();

            int pageNumber = 1;
            for (PDPage page : list) {
                PDDocument newDocument = new PDDocument();
                newDocument.addPage(page);

                newFile = new File(destinationDir + fileName + "_"+ pageNumber +".pdf");
                newFile.createNewFile();

                newDocument.save(newFile);
                newDocument.close();
                pageNumber++;
            }
        } else {
            System.err.println(fileName +" File not exists");
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}

}

答案 2 :(得分:0)

您可以检查没有页面,如果只有一页,则无需创建新的PDF。是吗?这将是解决问题的简单方法