win7上检测操作系统文本大小

发布于 2024-10-06 08:28:00 字数 114 浏览 2 评论 0原文

我想检测(通过 C++)用户选择的文本大小,即:

较小 - 100% 中 - 125% 更大 - 150%

看起来很简单,只是似乎找不到答案......

谢谢, 一个

I would like to detect (via c++) what the user has chosen for text size, i.e.:

Smaller - 100%
Medium - 125%
Larger - 150%

Seems like an easy one, just can't seem to find the answer....

thanks,
A

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

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

发布评论

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

评论(2

倚栏听风 2024-10-13 08:28:01

MSDN 有关于 DPI 感知的全面参考,尽管它相当长。 正确的函数是GetDeviceCaps,使用LOGPIXELSX和LOGPIXELSY来确定每个维度的DPI。 (不保证这些内容相同。)GetDeviceCaps 的文档为 这里

MSDN has a comprehensive reference on DPI awareness, although it's rather long. The correct function is GetDeviceCaps, using LOGPIXELSX and LOGPIXELSY to determine the DPI in each dimension. (These are not guaranteed to be the same.) Documentation for GetDeviceCaps is here.

辞旧 2024-10-13 08:28:01

这会更改显示设备的 DPI。使用 GetDeviceCaps()、LOGPIXELSX/Y。使用 CreateIC(L"DISPLAY", 0, 0, 0) 创建 DC。百分比值对应于每英寸 96、120 和 144 点。

This changes the DPI for the DISPLAY device. Use GetDeviceCaps(), LOGPIXELSX/Y. Use CreateIC(L"DISPLAY", 0, 0, 0) to create the DC. The percentage value corresponds to 96, 120 and 144 dots-per-inch.

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