Hi!
How can you create a transparent fill style using APIs only. I tried using the CreateBrushIndirect and CreateHatchBrush, but that didn't do much.
Printable View
Hi!
How can you create a transparent fill style using APIs only. I tried using the CreateBrushIndirect and CreateHatchBrush, but that didn't do much.
CreateBrushIndirect BS_HOLLOW 'BS_HOLLOW = 1
FloodFill 0,0,0 'flood fills transparently until it meets a pure black (RGB 0,0,0) pixel
OK, Thnx Sastraxi!