我正在生成一个带有 itext 的文档。
我的 iText 版本是:itext-2.0.8
我需要以下最终产品:
我有一个 2 列的 PDF 表。
我为每个单元格添加了背景颜色。但这就是结果:
是否可以从第一张图片中获取模式?
一些来样:
private static Color firstBGColColor = new Color(255,222,166);
...
PdfPTable table = new PdfPTable(2);
table.setWidthPercentage(100);
table.setWidths(new float[]{160,400});
PdfPCell cell;
cell = new PdfPCell();
cell.setPaddingLeft(7);
cell.setPaddingTop(10);
cell.setBorder(Rectangle.NO_BORDER);
cell.setBackgroundColor(firstBGColColor);