Windows平臺C++截圖程式
阿新 • • 發佈:2019-01-11
CWnd *pDesktop = GetDesktopWindow();
CDC *pdeskdc = pDesktop->GetDC();
CRect re;
//獲取桌面的大小
pDesktop->GetClientRect(&re);
CBitmap bmp;//建立記憶體點陣圖
bmp.CreateCompatibleBitmap(pdeskdc, re.Width(), re.Height());//建立點陣圖和DC的聯絡
//建立一個相容的記憶體畫板
CDC memorydc;
memorydc.CreateCompatibleDC(pdeskdc);
BITMAP bit;
bmp.GetBitmap(&bit);
//定義 影象大小(單位:byte)
DWORD size = bit.bmWidthBytes * bit.bmHeight;
//後面是建立一個bmp檔案的必須檔案頭
BITMAPINFOHEADER pbitinfo;
pbitinfo.biBitCount = 24;
pbitinfo.biClrImportant = 0;
pbitinfo.biCompression = BI_RGB;
pbitinfo.biHeight = bit.bmHeight;
pbitinfo.biPlanes = 1;
pbitinfo.biSize = sizeof(BITMAPINFOHEADER);
pbitinfo.biSizeImage = size;
pbitinfo.biWidth = bit.bmWidth;
pbitinfo.biXPelsPerMeter = 0;
pbitinfo.biYPelsPerMeter = 0;
/********只要呼叫這段程式碼一次截圖就會重新整理一次********/
//選中畫筆
CBitmap *pold = memorydc.SelectObject(&bmp);
//繪製圖像
memorydc.BitBlt(0, 0, re.Width(), re.Height(), pdeskdc, 0, 0, SRCCOPY);
memorydc.SelectObject (pold);
/********只要呼叫這段程式碼一次截圖就會重新整理一次********/
Mat img(bit.bmHeight, re.Width(), CV_8UC3);
GetDIBits(pdeskdc->m_hDC, bmp, 0, bit.bmHeight, img.data, (BITMAPINFO*)
&pbitinfo, DIB_RGB_COLORS);//將影象資料拷貝到記憶體中,這裡用的opencv資料格式承接了影象資料以方便顯示,可以根據需要改成其他的
imshow("", img);
waitKey(30);
img.release();