我已经使用了许多其他技术来从文件中读取像素数据,但尝试使用 GDI 似乎是个好主意。文档在非屏幕 DC 上有点含糊,所以我有点抓住稻草。
这就是我现在得到的,它说所有的像素都超出了界限(打印出'x')。
#include <windows.h>
#include <iostream>
using namespace std;
#define filename "test.bmp"
int main()
{
HBITMAP hBmp;
hBmp = (HBITMAP)LoadImage(NULL,(LPCTSTR)filename,IMAGE_BITMAP,0,0,LR_LOADFROMFILE|LR_SHARED);
if( hBmp==NULL )
{
cout<< "could not load\n";
system("pause");
return 0;
}
BITMAP bmp;
HDC hdc = CreateCompatibleDC(NULL);
GetObject(hBmp,sizeof(bmp),&bmp);
BitBlt(hdc,0,0,bmp.bmWidth,bmp.bmHeight,hdc,0,0,SRCCOPY);
for(int y=0;y<bmp.bmHeight;y++)
{
for(int x=0;x<bmp.bmWidth;x++)
{
if(x==0)
cout<< endl;
COLORREF clr;
clr = GetPixel(hdc,x,y);
if( clr != CLR_INVALID )
cout<< 0+(int)(clr==0);
else
cout<< 'x';
}
}
system("pause");
DeleteDC(hdc);
DeleteObject(hBmp);
return 0;
}