Examen d’un format de pixel actuel des contextes d’appareil
Utilisez les fonctions GetPixelFormat et DescribePixelFormat pour examiner le format de pixel actuel d’un contexte d’appareil, comme illustré dans le fragment de code suivant.
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);
}