iTextPdf是否允许在表格中设置单元格之间的间距?
我有一个包含2列的表格,我正在尝试在单元格上绘制边框底部。 我希望每个边框之间的空格与单元格填充相同。
我正在使用以下代码:
PdfPTable table = new PdfPTable(2);
table.setTotalWidth(95f);
table.setWidths(new float[]{0.5f,0.5f});
table.setHorizontalAlignment(Element.ALIGN_CENTER);
Font fontNormal10 = new Font(FontFamily.TIMES_ROMAN, 10, Font.NORMAL);
PdfPCell cell = new PdfPCell(new Phrase("Performance", fontNormal10));
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
cell.setHorizontalAlignment(Element.ALIGN_LEFT);
cell.setBorder(Rectangle.BOTTOM);
cell.setPaddingLeft(10f);
cell.setPaddingRight(10f);
table.addCell(cell);
table.addCell(cell);
table.addCell(cell);
table.addCell(cell);
document.add(table);
我该怎么做?
答案 0 :(得分:3)
你可能想要这个效果:
my book中对此进行了解释,更具体地说,在PressPreviews示例中进行了解释。
您需要先删除边框:
cell.setBorder(PdfPCell.NO_BORDER);
你需要自己在单元格事件中绘制边框:
public class MyBorder implements PdfPCellEvent {
public void cellLayout(PdfPCell cell, Rectangle position,
PdfContentByte[] canvases) {
float x1 = position.getLeft() + 2;
float x2 = position.getRight() - 2;
float y1 = position.getTop() - 2;
float y2 = position.getBottom() + 2;
PdfContentByte canvas = canvases[PdfPTable.LINECANVAS];
canvas.rectangle(x1, y1, x2 - x1, y2 - y1);
canvas.stroke();
}
}
您将单元格事件声明为单元格,如下所示:
cell.setCellEvent(new MyBorder());
在我的示例中,我从单元格的维度中添加或减去2个用户单位。在您的情况下,您可以定义填充p
,然后在p / 2
实施中的单元维度中添加或减去PdfPCellEvent
。