我已经使用了很多其他技术来从文件中读取像素数据,但尝试使用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;
}
答案 0 :(得分:1)
您必须为dc选择位图:
HBITMAP hOldBmp = SelectObject(hdc, hBmp);
// I haven't understood what you're trying to achieve with this line of code
BitBlt(hdc,0,0,bmp.bmWidth,bmp.bmHeight,hdc,0,0,SRCCOPY);
....
SelectObject(hDc, hOldBmp);
DeleteDC(hdc);
....
创建内存直流时,默认选择1x1位图。