Захват окна с помощью встроенной (setparent) игры Directx C # - PullRequest
0 голосов
/ 22 мая 2018

Цель: - Захватить окно winform, содержащее окно игры Directx (например, скриншот, но особый дескриптор).

Сценарий: - Внутри winform я обычно вставляю панель1.- Я использовал winapi SETPARENT, чтобы вставить главное игровое окно directx внутри penel1

Проблема: при захвате окна winform (this.handle) изображение встроенной игры на панели 1 не появляется.Появляется только панель.Я не могу использовать метод ScreenShot, потому что он перевернет другое окно.

Пример: With screenshot. capturing the screen With WinAPI. capturing the specific window

public Image CaptureWindow(IntPtr handle, int imgX = 0, int imgY = 0, int largura = 0, int altura = 0)            
    {
        // get te hDC of the target window
        IntPtr hdcSrc = User32.GetWindowDC(handle);            
        // get the size
        User32.RECT windowRect = new User32.RECT();
        User32.GetWindowRect(handle, ref windowRect);
        if(largura == 0 || altura == 0)
        {
            largura = windowRect.right - windowRect.left;
            altura = windowRect.bottom - windowRect.top;
        }
        // create a device context we can copy to
        IntPtr hdcDest = GDI32.CreateCompatibleDC(hdcSrc);
        // create a bitmap we can copy it to,
        // using GetDeviceCaps to get the width/height
        IntPtr hBitmap = GDI32.CreateCompatibleBitmap(hdcSrc, largura, altura);            
        // select the bitmap object
        IntPtr hOld = GDI32.SelectObject(hdcDest, hBitmap);
        // bitblt over            
        //GDI32.BitBlt(hdcDest, 0, 0, largura, altura, hdcSrc, 0, 0, GDI32.SRCCOPY);
        GDI32.BitBlt(hdcDest, 0, 0, largura, altura, hdcSrc, imgX, imgY, GDI32.SRCCOPY);            
        // restore selection
        GDI32.SelectObject(hdcDest, hOld);            
        // clean up 
        GDI32.DeleteDC(hdcDest);
        User32.ReleaseDC(handle, hdcSrc);
        // get a .NET image object for it
        Image img = Image.FromHbitmap(hBitmap);            
        // free up the Bitmap object
        GDI32.DeleteObject(hBitmap);

       return img;
    }

1 Ответ

0 голосов
/ 23 мая 2018

После использования SetParent с окном Directx, необходимо обновить winform.Просто: this.Refresh ();

...