如何在vb.net中获得颜色的RGB数值
网上有很多标准颜色可供选择。但如何知道有数值。我想要这些数值,以便通过更改这些数值,我可以获得无法作为标准颜色提供的所需色调。
例如,对于黑色,我们知道 RGB 数值等效为 0, 0, 0 但是橄榄色的 RGB 值是多少?
如何将此颜色名称转换为数字 RGB 值
net there are many standard colors are available . But how to know there numerical value. I want those numerical values so that by changing those I can obtain the required shades which are not available as standard colors.
E.g for black we know numerical RGB equivalent is 0, 0, 0
But what are RGB values for olive color?
how to do this color name to numeric RGB value conversion
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Color
结构体有.A
、.R
、.G
和.B
字段。例如:
The
Color
struct has.A
,.R
,.G
and.B
fields.For example:
由于所有颜色都是 Color 对象的,因此您只需实例化颜色并调用所需的 Color 方法即可。
你可能想要这样的东西:
Since all of the colors are of the Color object, you simply need to instantiate the color and call the Color methods that you want to.
You probably want something like this: