Lines Matching refs:hdc
1066 HDC hdc; in PHP_FUNCTION() local
1084 hdc = GetDC(0); in PHP_FUNCTION()
1098 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
1099 memBM = CreateCompatibleBitmap(hdc, Width, Height); in PHP_FUNCTION()
1118 ReleaseDC( 0, hdc ); in PHP_FUNCTION()
1134 HDC hdc; in PHP_FUNCTION() local
1139 hdc = GetDC(0); in PHP_FUNCTION()
1145 if (!hdc) { in PHP_FUNCTION()
1155 memDC = CreateCompatibleDC(hdc); in PHP_FUNCTION()
1156 memBM = CreateCompatibleBitmap(hdc, Width, Height); in PHP_FUNCTION()
1158 BitBlt( memDC, 0, 0, Width, Height , hdc, rc.left, rc.top , SRCCOPY ); in PHP_FUNCTION()
1174 ReleaseDC( 0, hdc ); in PHP_FUNCTION()