如何在 ruby pdf-writer 中设置颜色
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
酷,
我自己找到的:
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)
作为旁注:PDF::Writer 或多或少已被放弃,并被 Prawn 取代。
Just as a sidenote: PDF::Writer has been more or less abandoned and been replaced by Prawn.