使用IText for Java进行文本定位

时间:2011-09-26 07:17:14

标签: java pdf itext

在使用IText生成pdf之前,我需要定位不同的文本。我一直在考虑使用Chunks,但我不知道如何单独定位它们。我也尝试过使用PdfContentByte,但它不会生成任何PDF文件。

1 个答案:

答案 0 :(得分:1)

为什么不将表与Chunks结合使用的表格用于布局。例如:

PdfPTable headerTable = new PdfPTable(2);
float[] headerTableWidths = { 80f, 20f };
headerTable.setWidthPercentage(100f);
headerTable.setWidths(headerTableWidths);
headerTable.getDefaultCell().setBorderWidth(0);
headerTable.getDefaultCell().setPadding(2);
headerTable.getDefaultCell().setBorderColor(BaseColor.BLACK);
headerTable.getDefaultCell().setFixedHeight(90f);

PdfPCell infoCell = new PdfPCell();
infoCell.setHorizontalAlignment(Element.ALIGN_CENTER);
infoCell.setVerticalAlignment(Element.ALIGN_TOP);
infoCell.addElement("test");
infoCell.addElement("text");
table.addCell(infoCell);