如何使用iText设置表格单元格的背景色?
2022-09-01 11:17:23
虽然默认情况下当然可以使用 ,但它提供的选择非常有限。BaseColor
我想知道如何将自己的自定义颜色添加到文档中?
...
PdfPTable table = new PdfPTable(3);
PdfPCell cell = new PdfPCell(new Phrase("some clever text"));
cell.setBackgroundColor(BaseColor.GREEN);
table.addCell(cell);
...