I know how to draw a line, but the min length of a line is 2 pixles, I need to draw a dot?
Any Thoughts?
Printable View
I know how to draw a line, but the min length of a line is 2 pixles, I need to draw a dot?
Any Thoughts?
I was palying around graphics class and came up with very small dot .
VB Code:
Dim i As New Bitmap(1, 1) i.SetPixel(0, 0, Color.Black) e.Graphics.DrawImage(i, 100, 100) i.Dispose()