作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 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{[
如何实现插入文本的代码?
最佳答案
不是。
Pdf 不是所见即所得的格式。在内部,它更像是一个包含代码的文件。它具有围绕光标移动以及在光标尖端绘制文本和图形的说明。
事实上,大多数指令都被打包到“对象”中。所有对象都放在一个字典中,该字典使用字节偏移量来引用它们。
因此,在 pdf 文档中插入任何内容都会导致 2 个级别的问题。
因此我的简短回答。你不能。这立即解释了为什么您尝试过的所有 pdf 工具包都无法做到这一点。这简直是一项极其艰巨的任务。
关于java - 如何在 Java 中的 PDF 内容的句子中插入单词?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45861381/
我是一名优秀的程序员,十分优秀!