有没有人见过24位颜色的 Wince机器
HDC dc = ::GetDC(NULL);
int nBitsPixel = ::GetDeviceCaps(dc, BITSPIXEL);
::ReleaseDC(NULL, dc);
我见过nBitsPixel == 16, 或者 nBitsPixel == 32
有没有高手见过nBitsPixel == 24 的,我个人认为24是不可能的,RGB888的话,一定是32,而不是24.因为操作24位位图在字节对齐上没有优势.
各位分析一下,有没有可能nBitsPixel == 24 ?