簡體   English   中英

屏幕截圖僅返回黑色圖像

[英]Screen capture only returns a black image

我正在嘗試在MFC應用程序中截取主對話框的屏幕截圖,並將其另存為圖像文件。 我嘗試了每一個可以在網上找到的示例,但最終總是得到相同的結果:圖像文件具有正確的尺寸(我確定使用主對話框以外的其他對話框進行了嘗試),但是它全都是黑色的。 我最近的解決方案是使用CBitmap類將主對話框句柄轉移到CImage。 這是我的代碼:

CWnd* mainWindow;
CDC* mainWindowDC;
CBitmap bitmapToSave;
CImage imageToSave;
CRect windowRect;

//Get main window context and create bitmap from it
mainWindow = AfxGetMainWnd();
mainWindowDC = mainWindow->GetWindowDC();
mainWindow->GetWindowRect(&windowRect);
bitmapToSave.CreateCompatibleBitmap(mainWindowDC, windowRect.Width(), windowRect.Height());
imageToSave.Attach(bitmapToSave);
imageToSave.Save("C:\\Capture\\image.bmp", Gdiplus::ImageFormatBMP);

這是這樣做的方法:

HRESULT CaptureScreen(const CString& sImageFilePath)
{
   CWnd* pMainWnd = AfxGetMainWnd();
   CRect rc;
   pMainWnd->GetWindowRect(rc);
   CImage img;
   img.Create(rc.Width(), rc.Height(), 24);
   CDC memdc;
   CDC* pDC = pMainWnd->GetWindowDC();
   memdc.CreateCompatibleDC(pDC);
   CBitmap* pOldBitmap = memdc.SelectObject(CBitmap::FromHandle((HBITMAP)img));
   memdc.BitBlt(0, 0, rc.Width(), rc.Height(), pDC, 0, 0, SRCCOPY);
   memdc.SelectObject(pOldBitmap);
   return img.Save(sImageFilePath, Gdiplus::ImageFormatPNG);
}

也請看一下這個不錯的實現: http : //www.codeguru.com/cpp/article.php/c18347/C-Programming-Easy-Screen-Capture-Using-MFCATL.htm

您創建了位圖,但是沒有放入任何東西。 您需要從一個DC切換到另一個DC,以復制屏幕上的內容。

// ...
CMemDC dcMem;
dcMem.CreateCompatibleDC(&mainWindowDC);
CBitmap * pOld = dcMem.SelectObject(&bitmapToSave);
dcMem.BitBlt(0, 0, windowRect.Width(), windowRect.Height(), &mainWindowDC, windowRect.left, windowRect.top, SRCCOPY);
dcMem.SelectObject(pOld);
// ...

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM