1

我没有给这些问题一个合适的标题。:)

我需要如何从现有 PDF 文件中拆分(获取)页面。我为此使用 droidtext。

我的代码是

  try {

        String path = Environment.getExternalStorageDirectory()
                + "/test123.pdf";
                    /*Read Existing PDF*/ 
        PdfReader reader = new PdfReader(path);

        Document doc = new Document();
        doc.open();

        File outfile = new File(Environment.getExternalStorageDirectory()
                + "/test_new.pdf");
        if (!outfile.exists())
            outfile.createNewFile();

        FileOutputStream decfos = new FileOutputStream(outfile);

        Document document = new Document();
        PdfWriter writer = PdfWriter.getInstance(document, decfos);
        document.open();
        /*Getting First page*/  
        PdfImportedPage page = writer.getImportedPage(reader, 1);

        Image instance = Image.getInstance(page);

        document.add(instance);
        document.close();

    } catch (DocumentException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

我想从“test123.pdf”文件创建一个单页 pdf。它正在创建新的 PDF。

但问题是在新的 PDF 文件中有白色边框。我怎样才能删除这些空白。在原始 PDF 中没有这样的白色边框。

在此处输入图像描述

编辑 我再次尝试使用以下代码。但它给出了空指针异常copy.addPage(page);

String path = Environment.getExternalStorageDirectory()
                + "/test123.pdf";
        PdfReader reader = new PdfReader(path);

        PdfImportedPage page;
        PdfSmartCopy.PageStamp stamp;
        File outfile = new File(Environment.getExternalStorageDirectory()
                + "/test_new.pdf");
        Document doc = new Document();
        if (!outfile.exists())
            outfile.createNewFile();

        FileOutputStream decfos = new FileOutputStream(outfile);
        PdfSmartCopy copy = new PdfSmartCopy(doc, decfos);
        page = copy.getImportedPage(reader, 5);

        stamp = copy.createPageStamp(page);

        stamp.alterContents();
        copy.addPage(page);
4

1 回答 1

2

由于两个原因,我否决了这个问题:

  1. 您没有阅读官方文档。请参阅编辑 iTextSharp PdfSmartCopy 类的 DirectContent以了解为什么不阅读文档是错误的。
  2. 我是 iText 的原始开发者,我不支持使用 DroidText。这不是官方的 iText 版本。我强烈反对使用它: http: //lowagie.com/itext2请注意,我住在比利时,根据比利时法律,我拥有我制作的所有版权的精神权利。这包括 iText 2.1.7。

至于您的问题:您正在创建格式为 A4 的页面。向这些页面添加未知大小的导入页面。如果这些页面也是 A4 大小,它们将适合。如果他们有不同的大小,他们不会。要么它们会被剪裁,要么它们会有不必要的边距。

于 2012-10-11T21:28:21.210 回答