【发布时间】:2020-05-06 20:13:20
【问题描述】:
我根据https://github.com/dhorions/boxable/wiki的例子创建了BaseTable
float margin = 50;
float yStartNewPage = myPage.getMediaBox().getHeight() - (2 * margin);
float tableWidth = myPage.getMediaBox().getWidth() - (2 * margin);
boolean drawContent = true;
float yStart = yStartNewPage;
float bottomMargin = 70;
float yPosition = 550;
BaseTable table = new BaseTable(yPosition, yStartNewPage, bottomMargin, tableWidth, margin, mainDocument, myPage, true, drawContent);
Row<PDPage> headerRow = table.createRow(15f);
Cell<PDPage> cell = headerRow.createCell(100, "Header");
table.addHeaderRow(headerRow);
Row<PDPage> row = table.createRow(12);
cell = row.createCell(30, "Data 1");
cell = row.createCell(70, "Some value");
table.draw();
contentStream.close();
mainDocument.addPage(myPage);
mainDocument.save("testfile.pdf");
mainDocument.close();
桌子看起来不错
但是当我想像这样改变单元格高度时
cell.setHeight(5f);
单元格中没有绘制内容
我尝试更改行高、更改字体大小,但没有帮助。
你知道怎么解决吗?
【问题讨论】: