Lines Matching refs:memDC
1165 HDC memDC; in PHP_FUNCTION() local
1196 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
1198 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
1200 PrintWindow(window, memDC, (UINT) client_area); in PHP_FUNCTION()
1207 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
1213 SelectObject(memDC,hOld); in PHP_FUNCTION()
1215 DeleteDC(memDC); in PHP_FUNCTION()
1233 HDC memDC; in PHP_FUNCTION() local
1253 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
1255 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
1256 BitBlt( memDC, 0, 0, Width, Height , hdc, rc.left, rc.top , SRCCOPY ); in PHP_FUNCTION()
1263 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
1269 SelectObject(memDC,hOld); in PHP_FUNCTION()
1271 DeleteDC(memDC); in PHP_FUNCTION()