用VC实现从位图句柄获取像素点数据。
使用CreateBitmap函数(api),创建返回句柄,再显示是倒立的!//为什么这段图像显示是倒立的,很不解呀!HDChDeviceDC=CreateDC("DISP...
使用CreateBitmap函数(api),创建返回句柄,再显示是倒立的!
//为什么这段图像显示是倒立的,很不解呀!
HDC hDeviceDC=CreateDC("DISPLAY",NULL,NULL,NULL);
BITMAPINFOHEADER stBih;
stBih.biBitCount=::GetDeviceCaps(hDeviceDC,BITSPIXEL);
stBih.biWidth=::GetDeviceCaps(hDeviceDC,HORZRES);
stBih.biHeight=::GetDeviceCaps(hDeviceDC,VERTRES);
stBih.biPlanes=1;
stBih.biSize=sizeof(BITMAPINFOHEADER);
stBih.biCompression=BI_RGB;
stBih.biSizeImage=0;
stBih.biXPelsPerMeter=0;
stBih.biYPelsPerMeter=0;
stBih.biClrUsed=0;
stBih.biClrImportant=0;
int nSize=(stBih.biHeight*stBih.biWidth*stBih.biBitCount)/8;
char *pBuf=new char[nSize];
ZeroMemory(pBuf,nSize);
//m_hBitmap是一个成员变量,已经获取屏幕句柄.
int ret=GetDIBits(hDeviceDC,m_hBitmap,0,stBih.biHeight,(LPVOID)pBuf,(LPBITMAPINFO)(&stBih),DIB_RGB_COLORS);
if(0==ret)
{
MessageBox("GetDIBBits failed!","Error",MB_OK);
return;
}
HBITMAP hNewBitmap=CreateBitmap(stBih.biWidth,stBih.biHeight,1,stBih.biBitCount,(LPVOID)pBuf);
HDC hCurrentDc=::GetDC(m_hWnd);
HDC hMemDc=CreateCompatibleDC(hCurrentDc);
SelectObject(hMemDc,hNewBitmap);
BitBlt(hCurrentDc,0,0,stBih.biWidth,stBih.biHeight,hMemDc,0,0,SRCCOPY);
DeleteDC(hDeviceDC);
DeleteDC(hCurrentDc);
DeleteDC(hMemDc);
DeleteObject(m_hBitmap); 展开
//为什么这段图像显示是倒立的,很不解呀!
HDC hDeviceDC=CreateDC("DISPLAY",NULL,NULL,NULL);
BITMAPINFOHEADER stBih;
stBih.biBitCount=::GetDeviceCaps(hDeviceDC,BITSPIXEL);
stBih.biWidth=::GetDeviceCaps(hDeviceDC,HORZRES);
stBih.biHeight=::GetDeviceCaps(hDeviceDC,VERTRES);
stBih.biPlanes=1;
stBih.biSize=sizeof(BITMAPINFOHEADER);
stBih.biCompression=BI_RGB;
stBih.biSizeImage=0;
stBih.biXPelsPerMeter=0;
stBih.biYPelsPerMeter=0;
stBih.biClrUsed=0;
stBih.biClrImportant=0;
int nSize=(stBih.biHeight*stBih.biWidth*stBih.biBitCount)/8;
char *pBuf=new char[nSize];
ZeroMemory(pBuf,nSize);
//m_hBitmap是一个成员变量,已经获取屏幕句柄.
int ret=GetDIBits(hDeviceDC,m_hBitmap,0,stBih.biHeight,(LPVOID)pBuf,(LPBITMAPINFO)(&stBih),DIB_RGB_COLORS);
if(0==ret)
{
MessageBox("GetDIBBits failed!","Error",MB_OK);
return;
}
HBITMAP hNewBitmap=CreateBitmap(stBih.biWidth,stBih.biHeight,1,stBih.biBitCount,(LPVOID)pBuf);
HDC hCurrentDc=::GetDC(m_hWnd);
HDC hMemDc=CreateCompatibleDC(hCurrentDc);
SelectObject(hMemDc,hNewBitmap);
BitBlt(hCurrentDc,0,0,stBih.biWidth,stBih.biHeight,hMemDc,0,0,SRCCOPY);
DeleteDC(hDeviceDC);
DeleteDC(hCurrentDc);
DeleteDC(hMemDc);
DeleteObject(m_hBitmap); 展开
2个回答
2012-03-17
展开全部
可加Q群:122949029或27896931
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询