当前位置: 代码迷 >> WinCE >> 枚举设备的色深解决办法
  详细解决方案

枚举设备的色深解决办法

热度:148   发布时间:2016-04-28 13:34:49.0
枚举设备的色深
WinCE 4.2以上版本可以使用EnumDisplaySettings来枚举设备的色深等模式信息,但是WinCE4.2以下版本用什么方法获取呢?还有其他的方法来枚举设备的色深等模式信息吗?

------解决方案--------------------
This function retrieves information about the capabilities of a specified device. 

int GetDeviceCaps(
HDC hdc, 
int nIndex
);
Parameters
hdc 
[in] Handle to the device context. 
nIndex 
[in] Specifies the item to return. 
This parameter can be one of the following values. 

Value Description 
ASPECTX Relative width of a device pixel used for line drawing. 
ASPECTXY Diagonal width of the device pixel used for line drawing. 
ASPECTY Relative height of a device pixel used for line drawing. 
BITSPIXEL Number of adjacent color bits for each pixel.
  相关解决方案