5

我正在尝试截取 Chrome 窗口的屏幕截图。它看起来像这样:

铬窗口

当我用于PrintWindow获取屏幕截图时,我可以看到窗口标题栏/Chrome 选项卡区域闪烁。捕获的屏幕截图包含一个奇怪的 Windows Basic 风格的标题栏渲染(即使我的机器运行 Aero 主题):

捕获的图像

我注意到其他一些应用程序也表现出类似的行为,它们在屏幕上闪烁,但标题栏工件在捕获的屏幕截图中不可见。执行此操作的应用程序包括 Office 2010、IE 10 和 Trillian 选项卡式聊天窗口 — 换句话说,扩展非客户区的窗口似乎存在此问题。

重现这一点的代码很简单:

void Screenshot(HWND hWnd) {

    RECT rc;
    GetClientRect(hWnd, &rc);

    HDC hdcScreen = GetDC(NULL);
    HDC hdc = CreateCompatibleDC(hdcScreen);
    HBITMAP hbmp = CreateCompatibleBitmap(hdcScreen, 
        rc.right - rc.left, rc.bottom - rc.top);
    SelectObject(hdc, hbmp);

    //Print to memory hdc
    PrintWindow(hWnd, hdc, PW_CLIENTONLY);

}

为什么我看到闪烁和奇怪的视觉伪影?我能做些什么来阻止它?

4

2 回答 2

1

对于那些有同样问题的人,请执行以下操作:

const uint PW_RENDERFULLCONTENT = 0x00000002;
PrintWindow(hWnd, hDC, PW_RENDERFULLCONTENT);
于 2019-11-24T09:13:19.333 回答
1

如果启用 Aero,请改用 BitBlt。

铬桌面捕获源代码中的这条评论特别有用:

// When desktop composition (Aero) is enabled each window is rendered to a
// private buffer allowing BitBlt() to get the window content even if the
// window is occluded. PrintWindow() is slower but lets rendering the window
// contents to an off-screen device context when Aero is not available.
于 2016-04-22T19:00:52.583 回答