MaskBlt(Dest, XDest, YDest, Width, Height, Src, XSrc, YSrc, Mask, xMask, yMask, Rop)
Combines the color data for the source and destination
bitmaps using the specified mask and raster operation.
Parameters
Dest : PyHANDLE
Destination device context handleXDest : int
X pos of dest rectYDest : int
Y pos of dest rectWidth : int
Width of rect to be copiedHeight : int
Height of rect to be copiedSrc : PyHANDLE
Source DC handleXSrc : int
X pos of src rectYSrc : int
Y pos of src rectMask : PyGdiHANDLE
Handle to monochrome bitmap used to mask colorxMask : int
X pos in maskyMask : int
Y pos in maskRop : int
Foreground and background raster operations. See MSDN docs for how to construct this value.Comments
This function is not supported on Win9x.
Win32 API References
Search for MaskBlt at msdn, google or google groups.