디바이스 컨텍스트 현재 픽셀 형식 검사
다음 코드 조각과 같이 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);
}