6

我需要将文本放在 Pdf 表格单元格中。不幸的是,所有文本都出现在单元格的底部。这是我的示例代码:

String line = br.readLine();
Font f2 = new Font(Font.NORMAL, 12, Font.BOLD);
f2.setColor(Color.BLACK);
Paragraph p1 = new Paragraph(line, f2);
p1.setAlignment(Element.TABLE);
PdfPTable table = new PdfPTable(1);
table.setWidthPercentage(100);
PdfPCell cell = new PdfPCell();
cell.setBorder(Rectangle.NO_BORDER);
cell.setBorderWidthBottom(1f);
cell.setUseBorderPadding(true);
cell.setPadding(0);
cell.setBorderColor(new java.awt.Color(255, 255, 255));
cell.addElement(p1);
table.addCell(cell);
output.add(table);

我需要单元格内的文本在单元格内垂直居中。请帮忙。

4

2 回答 2

11

您分享的片段中有几个错误。我已经修改了代码并在此处发布了一个示例http://itextpdf.com/sandbox/tables/CenteredTextInCell(死链接,现在为https://github.com/itext/i5js-sandbox/blob/master/src/main /java/sandbox/tables/CenteredTextInCell.java )

减少变更概览:

您定义字体的方式是错误的,或者您使用的是非常非常旧的 iText 版本。

以下行实际上没有意义:

p1.setAlignment(Element.TABLE);

iText 中没有这样的值(曾经有一个,但很久以前就被删除了),即使使用保留的值来定义对象类型来定义对齐方式也没有意义。

如果您不想要边框:

cell.setBorder(Rectangle.NO_BORDER);

定义边框宽度、填充或颜色没有意义:

cell.setBorderWidthBottom(1f);
cell.setUseBorderPadding(true);
cell.setBorderColor(new java.awt.Color(255, 255, 255));

您需要定义垂直对齐的线是:

cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
于 2013-10-31T11:55:06.413 回答
5
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
于 2013-10-31T11:33:47.313 回答