Skip to content

C++ Library to capture screen with Windows Desktop Duplication API

Notifications You must be signed in to change notification settings

MurkyYT/DXGICapture

Repository files navigation

Windows Desktop Duplication API Library

Original code from WindowsDesktopDuplicationSample!

This library is used by CSAuto to capture the screen of CS2

Usage

C# Example DXGIcapture.cs class in here

//Create new DXGICapture object
DXGICapture DXGIcapture = new DXGICapture();
//Initialize the capture
DXGIcapture.Init();
//Get pointer to the bitmap
IntPtr _handle = DXGIcapture.GetCapture();
//Check for invalid capture
if (_handle == IntPtr.Zero)
{
    DXGIcapture.DeInit();
    DXGIcapture.Init();
    _handle = DXGIcapture.GetCapture();
}
using (Bitmap bitmap = Image.FromHbitmap(_handle))
{
//Do stuff with bitmap
}
//Deinitialize capture
DXGIcapture.DeInit();

About

C++ Library to capture screen with Windows Desktop Duplication API

Resources

Stars

Watchers

Forks

Packages

No packages published