如何在不使用 System.Drawing 的情况下生成颜色
我只是想知道是否有任何方法可以在给定 RGB 的情况下创建颜色,而无需导入 System.Drawing 。我想用这种颜色来填充我创建的一些矩形。
I just want to know if there's any way to create a color, given a RGB, without importing System.Drawing
. I want to use this color to fill some rectangles I have created.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是您想要一个颜色结构来存储 rg 和 b 值并帮助您将其转换为 32 位整数?
注:纯手写,可能有错误。
You mean you would like a color struct that will store for you r g and b values and helps you to convert it to a 32 bit integer?
Note: just written by hand, there may be errors.