使用 printf 打印 COLORREF 类型变量

发布于 2024-10-15 02:18:31 字数 27 浏览 1 评论 0原文

我需要打印一个 COLORREF 变量。

I need to print a variable which is a COLORREF.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风和你 2024-10-22 02:18:31

您可能还想将其分解为单独的 RGB 分量:

printf("R: %i, G: %i, B: %i", GetRValue(color), GetGValue(color), GetBValue(color));

这会给您类似的结果:

R:255,G:150,B:75

You might also want to break it up into the individual RGB components:

printf("R: %i, G: %i, B: %i", GetRValue(color), GetGValue(color), GetBValue(color));

this would give you something like:

R: 255, G: 150, B: 75

帅气尐潴 2024-10-22 02:18:31

COLORREF 只是一个包含 RGB 值的整数。您可以通过以下方式打印十六进制表示形式:

printf("%06X", color);

请注意,值的顺序是 bbggrr,因此它看起来与通常的 rrggbb 格式不同。

A COLORREF is just an integer containing an RGB value. You can print a hex representation this way:

printf("%06X", color);

Note that the order of values is bbggrr, so it will look different from the usual rrggbb format.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文