检查设备上下文当前像素格式
使用 GetPixelFormat 和 DescribePixelFormat 函数检查设备上下文的当前像素格式,如以下代码片段所示。
PIXELFORMATDESCRIPTOR pfd;
HDC hdc;
int iPixelFormat;
// if the device context has a current pixel format ...
if (iPixelFormat = GetPixelFormat(hdc)) {
// obtain a detailed description of that pixel format
DescribePixelFormat(hdc, iPixelFormat,
sizeof(PIXELFORMATDESCRIPTOR), &pfd);
}