如何在 ruby​​ pdf-writer 中设置颜色

发布于 2024-08-16 10:02:22 字数 244 浏览 6 评论 0原文

我在 ruby​​ 中使用 pdf-writer gem。

在绘制表格时,我需要设置表格的shade_color和shade_color2,以便行获得替代的shade和shade2颜色。

谁能告诉我如何设置它们?

就像 table.shade2 = Color::RGB::Magenta

但我有一个像 989898 这样的六进制值。现在,如何使用它。

任何帮助表示赞赏。

谢谢

I'm using pdf-writer gem in ruby.

While drawing a table, i need to set the shade_color and shade_color2 of table so that the rows get the alternate shade and shade2 colors.

Can anyone tell me how to set them?

Like table.shade2 = Color::RGB::Magenta

But i have a hexa vaue like 989898. Now, how to use this.

Any help is appreciated.

Thanks

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

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

发布评论

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

评论(2

嗳卜坏 2024-08-23 10:02:22

酷,

我自己找到的:

table.shade2 = Color::RGB.new(227,241,254)

同样可以在其他地方使用:

table.line_color = Color::RGB.new(227,241,254)

Cool,

I found it by myself:

table.shade2 = Color::RGB.new(227,241,254)

The same can be used elsewhere:

table.line_color = Color::RGB.new(227,241,254)

怀中猫帐中妖 2024-08-23 10:02:22

作为旁注:PDF::Writer 或多或少已被放弃,并被 Prawn 取代。

Just as a sidenote: PDF::Writer has been more or less abandoned and been replaced by Prawn.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文