使用 printf 打印 COLORREF 类型变量
我需要打印一个 COLORREF 变量。
I need to print a variable which is a COLORREF.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要打印一个 COLORREF 变量。
I need to print a variable which is a COLORREF.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可能还想将其分解为单独的 RGB 分量:
这会给您类似的结果:
R:255,G:150,B:75
You might also want to break it up into the individual RGB components:
this would give you something like:
R: 255, G: 150, B: 75
COLORREF
只是一个包含 RGB 值的整数。您可以通过以下方式打印十六进制表示形式:请注意,值的顺序是 bbggrr,因此它看起来与通常的 rrggbb 格式不同。
A
COLORREF
is just an integer containing an RGB value. You can print a hex representation this way:Note that the order of values is
bbggrr
, so it will look different from the usualrrggbb
format.