3

我想在我的 VS2008、MFC、C++ 项目中捕获窗口的内容(客户区)。我曾尝试使用此处描述的 PrintWindow 技术: 如何在 C++ 中将窗口的屏幕截图作为位图对象?

我还尝试使用以下代码对窗口的内容进行 blitting:

void captureWindow(int winId)
{
HDC handle(::GetDC(HWND(winId)));
CDC sourceContext;
CBitmap bm;
CDC destContext;

if( !sourceContext.Attach(handle) )
{
    printf("Failed to attach to window\n");
    goto cleanup;
}

RECT winRect;
sourceContext.GetWindow()->GetWindowRect(&winRect);
int width = winRect.right-winRect.left;
int height = winRect.bottom-winRect.top;

destContext.CreateCompatibleDC( &sourceContext );

if(!bm.CreateCompatibleBitmap(&sourceContext, width, height)) {
    printf("Failed to create bm\n");
    goto cleanup;
}

{
    //show a message in the window to enable us to visually confirm we got the right window
    CRect rcText( 0, 0, 0 ,0 );
    CPen pen(PS_SOLID, 5, 0x00ffff);
    sourceContext.SelectObject(&pen);
    const char *msg = "Window Captured!";
    sourceContext.DrawText( msg, &rcText, DT_CALCRECT );
    sourceContext.DrawText( msg, &rcText, DT_CENTER );

    HGDIOBJ hOldDest = destContext.SelectObject(bm);
    if( hOldDest==NULL )
    {
        printf("SelectObject failed with error %d\n", GetLastError());
        goto cleanup;
    }

    if ( !destContext.BitBlt( 0, 0, width, height, &sourceContext, 0, 0, SRCCOPY ) ){
        printf("Failed to blit\n");
        goto cleanup;
    }

    //assume this function saves the bitmap to a file
    saveImage(bm, "capture.bmp");

    destContext.SelectObject(hOldDest);
}
cleanup:
    destContext.DeleteDC();
    sourceContext.Detach();
    ::ReleaseDC(0, handle);
}

该代码适用于大多数应用程序。然而,我需要捕获屏幕截图的特定应用程序有一个我认为是使用 OpenGl 或 Direct3D 呈现的窗口。这两种方法都可以很好地捕获应用程序的大部分内容,但“3d”区域会变黑或出现乱码。

我无权访问应用程序代码,因此无法以任何方式更改它。

有什么方法可以捕获所有内容,包括“3d”窗口?

4

1 回答 1

0

您的 3D 区域中的数据是由图形适配器在图形漏斗下方生成的,您的应用程序可能无法从渲染上下文中读取字节数据。在 OpenGL 中,您可以使用 glReadPixels() 将该数据从漏斗中拉回您的应用程序内存中。请参阅此处了解用法: http ://www.opengl.org/sdk/docs/man/xhtml/glReadPixels.xml

于 2013-02-01T22:59:30.003 回答