2009年5月19日 星期二

取得目前螢幕解析度

#include "windows.h"

int ScreenHeight, ScreenWidth;
ScreenHeight = GetSystemMetrics(SM_CYSCREEN); //取得高度的像素
ScreenWidth = GetSystemMetrics(SM_CXSCREEN); //取得寬度的像素

各參數的定義, 可參考此網頁 : http://tech.ddvip.com/2008-11/122655593392184.html

沒有留言:

張貼留言