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

发布于 2024-11-16 02:22:18 字数 315 浏览 3 评论 0原文

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

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

...
        PdfPTable table = new PdfPTable(3);

        PdfPCell cell = new PdfPCell(new Phrase("some clever text"));
        cell.setBackgroundColor(BaseColor.GREEN);
        table.addCell(cell);
...

While it is of course possible to use BaseColor, by default, it offers very limited choices.

I wonder how can i add my own custom color to the document?

...
        PdfPTable table = new PdfPTable(3);

        PdfPCell cell = new PdfPCell(new Phrase("some clever text"));
        cell.setBackgroundColor(BaseColor.GREEN);
        table.addCell(cell);
...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

黎歌 2024-11-23 02:22:18

发帖,希望其他人会发现此回复有用。

似乎可以从 WebColor 创建一个新的 BaseColor 为:

BaseColor myColor = WebColors.GetRGBColor("#A00000");

然后可以将其添加为背景:

cell.setBackgroundColor(myColor);

Posting, in hopes someone else will find this response useful.

It seems one can create a new BaseColor from WebColor as:

BaseColor myColor = WebColors.GetRGBColor("#A00000");

Which then can be added as a background as:

cell.setBackgroundColor(myColor);
水染的天色ゝ 2024-11-23 02:22:18

有很多选择。

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

还有图案颜色和底纹颜色,但这些要简单得多。

Lots of options.

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

There's also pattern colors and shading colors, but those are Much Less Simple.

纵情客 2024-11-23 02:22:18

试试这个:
cell.setBackgroundColor(new BaseColor(226, 226, 226));

或:
cell.setBackgroundColor(WebColors.getRGBColor("#E2E2E2")); 已弃用

Try this:
cell.setBackgroundColor(new BaseColor(226, 226, 226));

or:
cell.setBackgroundColor(WebColors.getRGBColor("#E2E2E2")); deprecated

此刻的回忆 2024-11-23 02:22:18

另一种解决方案是:

public static String mColor = "#aa8cc5";
int aa = Integer.parseInt(mColor,16); // base 16
int colorArr = Color.rgb(Color.red(aa),Color.green(aa),Color.blue(aa));
cell1.setBackgroundColor(new BaseColor(colorArr));

One more solution is:

public static String mColor = "#aa8cc5";
int aa = Integer.parseInt(mColor,16); // base 16
int colorArr = Color.rgb(Color.red(aa),Color.green(aa),Color.blue(aa));
cell1.setBackgroundColor(new BaseColor(colorArr));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文