我从原始PDF创建一个新的PDF。 我尝试在PdfPCell中添加Phrase。图书馆说,当你在PdfPCell中放入文字时,你必须使用短语。
我需要这样做,因为我需要一个位置和单元格中的文本。我有这个代码。
mPdfFileOutPut = new File(Environment.getExternalStorageDirectory(),
outPutFileStringBuilder.toString());
Document document = new Document();
try {
PdfWriter.getInstance(document, new FileOutputStream(mPdfFileOutPut));
document.open();
FileInputStream is = new FileInputStream(mPdfFile);
// Create a reader to extract info
PdfReader pdfReader = new PdfReader(is);
// Get the fields from the reader (read-only!!!)
AcroFields form = pdfReader.getAcroFields();
Set<String> fields = form.getFields().keySet();
PdfPCell cell = new PdfPCell( new Phrase("string"));
for (String key : fields) {
cell.setBackgroundColor(BaseColor.BLUE);
cell.addElement(new Paragraph("ddfdelellelle"));
cell.setLeft(form.getFieldPositions(key).get(0).position.getLeft());
cell.setRight(form.getFieldPositions(key).get(0).position.getRight());
cell.setTop(form.getFieldPositions(key).get(0).position.getTop());
cell.setBottom(form.getFieldPositions(key).get(0).position.getBottom());
document.add(cell);
}
document.close();
} catch (Exception e) {
e.printStackTrace();
}
有什么想法吗?我希望有一个解决方案。
答案 0 :(得分:2)
如果您查看与之关联的API documentation,您会看到它显示: PdfPTable中的单元格。表格单元格必须是表格的一部分。
但看起来你根本不想使用表格。如果我正确理解了代码的意图,您希望创建一个新的PDF文档,其文本内容与输入PDF中的表单字段位于相同的位置。请注意,您没有考虑多个页面:如果输入表单的字段超过1页,您将在输出文档的1页上添加所有内容。您也没有考虑页面大小。
查看便捷方法ColumnText.showTextAligned()
以添加具有绝对定位的Phrase
。这是一个例子:http://itextpdf.com/examples/iia.php?id=61
如果您正在尝试制作表单的非交互式版本,请阅读表单展平。