0

GetDIBits() 没有将正确的 BGR 值传递给 COLORREF 数组:

#include <windows.h>
#include <iostream>
using namespace std;

int main() {int i; HBITMAP hBit; HDC bdc; BITMAPINFO bmpInfo; COLORREF pixel[100];


    hBit=(HBITMAP)LoadImage(NULL,(LPCTSTR)"F:\\bitmap.bmp",IMAGE_BITMAP,10,10,LR_LOADFROMFILE);
    bdc=CreateCompatibleDC(NULL);
    SelectObject(bdc,hBit);


    bmpInfo.bmiHeader.biSize=sizeof(BITMAPINFO);
    bmpInfo.bmiHeader.biWidth=10;
    bmpInfo.bmiHeader.biHeight=-10;
    bmpInfo.bmiHeader.biPlanes=1;
    bmpInfo.bmiHeader.biBitCount=24;
    bmpInfo.bmiHeader.biCompression=BI_RGB;
    bmpInfo.bmiHeader.biSizeImage=0;


    GetDIBits(bdc,hBit,0,10,pixel,&bmpInfo,DIB_RGB_COLORS);


    for (i=0; i<100; i++) {
        cout<<GetBValue(pixel[i]);
        cout<<GetGValue(pixel[i]);
        cout<<GetRValue(pixel[i]);
        cout<<endl;
    }


    ReleaseDC(NULL,bdc);
    DeleteDC(bdc);
    DeleteObject(hBit);
    free(pixel);
    while (1) {}
}

bitmap.bmp 是一个完全蓝色的 (RGB(0,0,255)) 10x10 24 位位图文件。输出的前几行如下所示:

0 0 255

255 0 0

0 255 0

0 0 255

改变的不仅仅是值的顺序;有些颜色值不应该是 0。最后几个 COLORREF 值是 RGB(0,0,0)。代码可能有什么问题?

4

1 回答 1

1

看起来你的值被转移了,可能是因为你错过了一个字节。

您应该检查该BMP文件实际上是一个24bit RGB位图,而不是像32bit RGBA.

尝试放置一个位计数32而不是,您的像素24中可能有一个未使用的字节:BMP

bmpInfo.bmiHeader.biBitCount = 32;
于 2013-05-17T08:25:43.357 回答