我需要在位图像素中交换 RGBA 通道。例如.net 图形将通道写入 BGRA 中的位图,我需要 RGBA。我认为这个顺序由 PIXELFORMATDESCRIPTOR 决定,但我不知道如何。我确实跟随
PIXELFORMATDESCRIPTOR pfd = {
sizeof(PIXELFORMATDESCRIPTOR), // size of this pfd
1, // version number
PFD_DRAW_TO_BITMAP | // support window
PFD_SUPPORT_OPENGL |
PFD_NEED_PALETTE,
PFD_TYPE_COLORINDEX, // RGBA type
32, // 24-bit color depth
8, 8, 8, 0, 0, 0, // color bits ignored
8, // no alpha buffer
0, // shift bit ignored
0, // no accumulation buffer
0, 0, 0, 0, // accum bits ignored
32, // 32-bit z-buffer
0, // no stencil buffer
0, // no auxiliary buffer
PFD_MAIN_PLANE, // main layer
0, // reserved
0, 0, 0 // layer masks ignored
};
int iPixelFormat;
::SelectObject ((HDC)_hdc.ToPointer (), (HBITMAP)_hBitmap.ToPointer ());
iPixelFormat = ChoosePixelFormat((HDC)_hdc.ToPointer (), &pfd);
bool result = ::SetPixelFormat((HDC)_hdc.ToPointer (), iPixelFormat, &pfd);
我试图改变频道的转变,但它什么都不做。