iText |无法设置单元格边框颜色

时间:2016-01-28 22:46:17

标签: itext

我正在尝试设置表格单元格的边框颜色。无论我尝试什么,边框颜色都没有变化 - 它始终是黑色的!我究竟做错了什么?这是我的测试代码。 cell1应该有一个红色的顶部边框和一个蓝色的底部边框:

    PdfPTable table = new PdfPTable(2);

    PdfPCell cell1 = new PdfPCell(new Phrase("Cell 1"));
    cell1.setBorderColorTop(new BaseColor(255, 0, 0));
    cell1.setBorderColorBottom(BaseColor.BLUE);
    table.addCell(cell1);

    PdfPCell cell2 = new PdfPCell(new Phrase("Cell 2"));
    table.addCell(cell2);

1 个答案:

答案 0 :(得分:4)

请查看ColoredBorder示例。我不得不承认:iText存在不一致。

默认情况下,iText中的所有边框都相同。如果更改一个边框的颜色,则必须添加一行:

cell = new PdfPCell(new Phrase("Cell 1"));
cell.setUseVariableBorders(true);
cell.setBorderColorTop(BaseColor.RED);
cell.setBorderColorBottom(BaseColor.BLUE);

使用setUseVariableBorders()方法,我们告诉iText边框不相等。如您所见,颜色现在得到尊重:

enter image description here

如果更改边框的宽度,则无需使用setUseVariableBorders()。在这种情况下,默认值是自动更改(这是我之前提到的不一致):

cell = new PdfPCell(new Phrase("Cell 2"));
cell.setBorderWidthLeft(5);
cell.setBorderColorLeft(BaseColor.GREEN);
cell.setBorderWidthTop(8);
cell.setBorderColorTop(BaseColor.YELLOW);

如您所见,单元格1和单元格2中仍有两个黑色边框。我们可以使用setBorder()方法删除它们:

cell = new PdfPCell(new Phrase("Cell 3"));
cell.setUseVariableBorders(true);
cell.setBorder(Rectangle.LEFT | Rectangle.BOTTOM);
cell.setBorderColorLeft(BaseColor.RED);
cell.setBorderColorBottom(BaseColor.BLUE);

如果你看看单元格2,你会看到我们选择了相当厚的边框。结果,这些边界与单元格中的文本重叠。我们可以使用setUseBorderPadding()方法避免这种情况:

cell.setBorder(Rectangle.LEFT | Rectangle.TOP);
cell.setUseBorderPadding(true);
cell.setBorderWidthLeft(5);
cell.setBorderColorLeft(BaseColor.GREEN);
cell.setBorderWidthTop(8);
cell.setBorderColorTop(BaseColor.YELLOW);

现在计算填充时会考虑边框。