无法在 pygtk 中使用 cairo 更改使用 rgb 值的线条颜色
我正在 pygtk 中使用 cairo 在绘图区域上绘图。 我使用此函数设置线条颜色:
cr.set_source_rgb(203,12,41)
但它显示白色而不是这种颜色 #CB0C33
它就像红玫瑰色。 所以请有人告诉我如何使用 pygtk 中的 cairo 将线条颜色更改为任何颜色。 请帮我。 提前谢谢你...
I am drawing on drawing area using cairo in pygtk.
I set color of line using this func:
cr.set_source_rgb(203,12,41)
but it showing white color instead of this color #CB0C33
it is like red rose color.
So please can any one tell me how to change color of line to any color using cairo in pygtk.
Please help me.
thank you in advanced...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
set_source_rgb 希望您传递从 0 到 1 的浮点值,其中 1 应对应于 FF。请检查下面的代码是否适合您:
希望这有帮助,问候
set_source_rgb expects you to pass floating point values from 0 to 1, where 1 should correspond to FF. Pls, check if the code below would work for you:
hope this helps, regards