Lines Matching refs:memDC
1067 HDC memDC; in PHP_FUNCTION() local
1098 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
1100 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
1102 PrintWindow(window, memDC, (UINT) client_area); in PHP_FUNCTION()
1109 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
1115 SelectObject(memDC,hOld); in PHP_FUNCTION()
1117 DeleteDC(memDC); in PHP_FUNCTION()
1135 HDC memDC; in PHP_FUNCTION() local
1155 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
1157 hOld = (HBITMAP) SelectObject (memDC, memBM); in PHP_FUNCTION()
1158 BitBlt( memDC, 0, 0, Width, Height , hdc, rc.left, rc.top , SRCCOPY ); in PHP_FUNCTION()
1165 int c = GetPixel(memDC, x,y); in PHP_FUNCTION()
1171 SelectObject(memDC,hOld); in PHP_FUNCTION()
1173 DeleteDC(memDC); in PHP_FUNCTION()