Original code from WindowsDesktopDuplicationSample!
This library is used by CSAuto to capture the screen of CS2
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();