c有什么函数可以获取windows分辨率的
本帖最后由 Cool_Breeze 于 2020-3-1 09:26 编辑把C语言的语法理解清楚,基本上就能理解Windows API函数了!感谢以下老哥的帮住!!!
#include <stdio.h>
#include <windows.h>
int main(void)
{
int x=GetSystemMetrics(SM_CXSCREEN);
int y=GetSystemMetrics(SM_CYSCREEN);
printf("屏幕分辨率为:%d*%d",x,y);
return 0;
}屏幕分辨率为:2048*1152
--------------------------------
Process exited after 0.01887 seconds with return value 0
请按任意键继续. . . 你需要查阅WinAPI函数 #include<windows.h>
直接调用windows API函数GetSysTemMetrics()
参数参考MSDN,可以获得屏幕H方向和V方向的像素 bin554385863 发表于 2019-12-20 23:18
你需要查阅WinAPI函数
谢谢 本帖最后由 Croper 于 2019-12-20 23:28 编辑
#include <windows.h>
...
HDC hdcDesktop=GetDC(0);
int cx = GetDeviceCaps(hdcDesktop, HORZRES);
int cy = GetDeviceCaps(hdcDesktop, VERTRES);
ReleaseDC(0,hdcDesktop); ba21 发表于 2019-12-20 23:18
#include
直接调用windows API函数GetSysTemMetrics()
参数参考MSDN,可以获得屏幕H方向和V方向的像素
Dev-c++的windows.h中的GetSystemMetrics中的System的第二个s是小写我就说怎么没有保函呢!感谢!
页:
[1]