Created
August 28, 2015 12:44
-
-
Save holmesconan/23fdbd3ce16ee411f885 to your computer and use it in GitHub Desktop.
Capture screen by GDI on Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HDC hdc = GetDC(NULL); // get the desktop device context | |
HDC hDest = CreateCompatibleDC(hdc); // create a device context to use yourself | |
// get the height and width of the screen | |
int height = GetSystemMetrics(SM_CYVIRTUALSCREEN); | |
int width = GetSystemMetrics(SM_CXVIRTUALSCREEN); | |
// create a bitmap | |
HBITMAP hbDesktop = CreateCompatibleBitmap( hdc, width, height); | |
// use the previously created device context with the bitmap | |
SelectObject(hDest, hbDesktop); | |
// copy from the desktop device context to the bitmap device context | |
// call this once per 'frame' | |
BitBlt(hDest, 0,0, width, height, hdc, 0, 0, SRCCOPY); | |
// after the recording is done, release the desktop context you got.. | |
ReleaseDC(NULL, hdc); | |
// ..and delete the context you created | |
DeleteDC(hDest); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@alokmahor replace the first
NULL
by the HWND of calculator and get theRECT
of theCalculator
window