如何使用iText设置表格单元的背景色?

虽然BaseColor默认情况下当然可以使用,但提供的选择非常有限。

我想知道如何将自己的自定义颜色添加到文档中?

...

PdfPTable table = new PdfPTable(3);

PdfPCell cell = new PdfPCell(new Phrase("some clever text"));

cell.setBackgroundColor(BaseColor.GREEN);

table.addCell(cell);

...

回答:

很多选择。

BaseColor color = new BaseColor(red, green, blue); // or red, green, blue, alpha

CYMKColor cmyk = new CMYKColor(cyan, yellow, magenta, black); // no alpha

GrayColor gray = new GrayColor(someFloatBetweenZeroAndOneInclusive); // no alpha

也有图案颜色和阴影颜色,但是简单得多。

以上是 如何使用iText设置表格单元的背景色? 的全部内容, 来源链接: utcz.com/qa/411991.html

回到顶部