I am drawing a shape as shown below but I need for the ellipses to not overlap each other. I just need their circumference to be drawn as if I was putting individual pixels on the screen without any brushes.
In Delphi I could simply do this:
Could anybody tell me the Win32 API that allows you to do this?
In Delphi I could simply do this:
Form1.Canvas.Brush.Style := bsClear;
Could anybody tell me the Win32 API that allows you to do this?
CreateBrushIndirect + BS_HOLLOW - is that what you want?
Exactly. I just found it. Appreciations **==