简体   繁体   English

opencv桌面捕获以大字体模式仅返回Windows屏幕的一部分

[英]opencv desktop capture returns only part of the screen on windows in large fonts mode

I use this standard sample to grab screen with opencv. 我使用此标准示例通过opencv获取屏幕。 It works correctly if my font size in control panel is 100%: 如果我在控制面板中的字体大小是100%,它可以正常工作:

Mat hwnd2mat(HWND hwnd) {
    HDC hwindowDC, hwindowCompatibleDC;
    int height, width, srcheight, srcwidth;
    HBITMAP hbwindow;
    Mat src;
    BITMAPINFOHEADER  bi;
    hwindowDC = GetDC(hwnd);
    hwindowCompatibleDC = CreateCompatibleDC(hwindowDC);
    SetStretchBltMode(hwindowCompatibleDC, COLORONCOLOR);
    RECT windowsize;    // get the height and width of the screen
    GetClientRect(hwnd, &windowsize);
    srcheight = windowsize.bottom;
    srcwidth = windowsize.right;
    height = windowsize.bottom / 1;  //change this to whatever size you want to resize to
    width = windowsize.right / 1;
    src.create(height, width, CV_8UC4);
    // create a bitmap
    hbwindow = CreateCompatibleBitmap(hwindowDC, width, height);
    bi.biSize = sizeof(BITMAPINFOHEADER);    //http://msdn.microsoft.com/en-us/library/windows/window/dd183402%28v=vs.85%29.aspx
    bi.biWidth = width;
    bi.biHeight = -height;  //this is the line that makes it draw upside down or not
    bi.biPlanes = 1;
    bi.biBitCount = 32;
    bi.biCompression = BI_RGB;
    bi.biSizeImage = 0;
    bi.biXPelsPerMeter = 0;
    bi.biYPelsPerMeter = 0;
    bi.biClrUsed = 0;
    bi.biClrImportant = 0;
    SelectObject(hwindowCompatibleDC, hbwindow);
    StretchBlt(hwindowCompatibleDC, 0, 0, width, height, hwindowDC, 0, 0, srcwidth, srcheight, SRCCOPY); //change SRCCOPY to NOTSRCCOPY for wacky colors !
    GetDIBits(hwindowCompatibleDC, hbwindow, 0, height, src.data, (BITMAPINFO *)&bi, DIB_RGB_COLORS);  //copy from hwindowCompatibleDC to hbwindow
    DeleteObject(hbwindow);
    DeleteDC(hwindowCompatibleDC);
    ReleaseDC(hwnd, hwindowDC);
    return src;
}

int main() {
    HWND hwndDesktop = GetDesktopWindow();
    Mat src = hwnd2mat(hwndDesktop);
    imwrite("output.bmp", src);
    return 0;
}

But if I enable large fonts (on Windows 10 at least), then it gives me only upper left corner of the screen: 但是,如果我启用了大字体(至少在Windows 10上是这样),那么它只给我屏幕的左上角:

在此处输入图片说明

how can I fix that? 我该如何解决?

I think you need to mark application as HighDpi-aware by creating corresponding manifest entry . 我认为您需要通过创建相应的清单条目将应用程序标记为支持HighDpi。 Otherwise your application will deal with DPI virtualization. 否则,您的应用程序将处理DPI虚拟化。

Another solution might be calling SetProcessDPIAware() in the beginning of your program. 另一个解决方案可能是在程序的开头调用SetProcessDPIAware()。 Helped me. 帮助过我。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM