windows 屏幕大小
时间: 2023-07-25 07:21:30 浏览: 128
在 Windows 中,我们可以使用 GetSystemMetrics 函数来获取屏幕的大小信息。以下是一个获取屏幕大小的示例代码:
```c++
#include <windows.h>
int main()
{
// 获取屏幕宽度和高度
int screen_width = GetSystemMetrics(SM_CXSCREEN);
int screen_height = GetSystemMetrics(SM_CYSCREEN);
// 输出屏幕大小信息
printf("screen size: %d x %d\n", screen_width, screen_height);
return 0;
}
```
在这个示例中,我们使用 GetSystemMetrics 函数获取屏幕的宽度和高度信息,并将其存储在变量 screen_width 和 screen_height 中。接着,我们使用 printf 函数输出屏幕大小信息。
需要注意的是,GetSystemMetrics 函数返回的是像素值,而非物理尺寸。如果需要获取屏幕的物理尺寸信息,可以考虑使用其他 API 函数,例如 GetDeviceCaps 函数。
阅读全文