hi all,
I need of your help!!!
I want to create an image dot.png that is circle filled with white color.
I used followin code:
Code:
Dim bmp As Bitmap = New Bitmap(64, 64)
Dim g As Graphics = Graphics.FromImage(bmp)
g.FillEllipse(Brushes.White, 8, 8, 48, 48)
bmp.Save("d:\dot.png")
I would like to obtain following image:


meanwhile I obtain following image:


So the result in google earth is different. I would like to obtain following result (obatined with dot_good):


meanwhile i obtain following one:


it seems that dot_good has shaped border but i cannot obtain it with my code.

Can someone help me?

thanks in advenced

Gio