如何在Java中的PDF内容的句子中插入单词?

时间:2017-08-24 12:14:54

标签: java itext pdfbox

我想在PDF内容的句子中添加一个单词。

例如:

This is a sample content.

我想在此内容中插入一个单词,如此输出。

This is a nice sample content.

这是我在互联网上找到的itextPdf示例代码。假设内容已经存在,我们想通过在句子中添加文本来修改它。

try {
        //Create PdfReader instance.
        PdfReader pdfReader =
                new PdfReader(SRC);

        //Create PdfStamper instance.
        PdfStamper pdfStamper = new PdfStamper(pdfReader,
                new FileOutputStream(DEST));

        //Create BaseFont instance.
        BaseFont baseFont = BaseFont.createFont(
                BaseFont.TIMES_ROMAN,
                BaseFont.CP1252, BaseFont.NOT_EMBEDDED);

        //Get the number of pages in pdf.
        int pages = pdfReader.getNumberOfPages();
        System.out.println(pdfStamper.getOverContent(1));
        //Iterate the pdf through pages.
        for(int i=1; i<=pages; i++) {
            //Contain the pdf data.
            PdfContentByte pageContentByte =
                    pdfStamper.getOverContent(i);
            pageContentByte.setFlatness(89);

            pageContentByte.beginText();
            //Set text font and size.
            pageContentByte.setFontAndSize(baseFont, 14);

            pageContentByte.setTextMatrix(50, 720);

            //Write text
            pageContentByte.setWordSpacing(12);
            pageContentByte.showText("hello world");
            pageContentByte.endText();
        }

        //Close the pdfStamper.
        pdfStamper.close();

        System.out.println("PDF modified successfully.");
    } catch (Exception e) {
        e.printStackTrace();
    }

我尝试了itextPdf和PdfBox,但它们都不起作用。

我可以使用pdfbox的PDFStreamParser获取pdf文档中的对象。

PDFOperator{Td}, COSArray{[COSString{Name }, COSFloat{163.994}, COSString{____________________________________________________}, COSFloat{-8.03223}, COSString{________________________________________________________}]}, PDFOperator{TJ}, COSInt{19}, PDFOperator{TL}, PDFOperator{T*}, COSArray{[COSString{T}, COSInt{36}, COSString{itle}, COSFloat{0.997925}, COSString{ }, COSFloat{-94.9982}, COSString{_____________________________________________________________________________________________________________}]}, PDFOperator{TJ}, PDFOperator{T*}, COSArray{[

如何实现插入文本的代码?

1 个答案:

答案 0 :(得分:6)

Pdf不是一种所见即所得格式。在内部,它更像是包含代码的文件。它包含在光标周围移动,以及在光标顶端绘制文本和图形的说明。

然后,大多数指令被打包到&#34;对象&#34;中。所有对象都放在一个字典中,该字典使用字节偏移来引用它们。

因此,在pdf文档中插入任何内容都会导致2个级别的问题。

  1. 你会弄乱文档中所有内容的字节偏移量
  2. 您需要解读所有现有的渲染操作以理解文档(导出文本行,段落等结构),以便在插入内容后正确地重新流动内容
  3. 因此我简短的回答。你不能。这立即解释了为什么您尝试过的所有pdf工具包都无法做到。这简直是​​一项非常艰巨的任务。