i want to create a new bitmap of size 4 x 4 pixels composing of 2 white and 2 black pixel but when i created it's not clear due to overlapping of colors.what's wrong with my approach.thanks in advance
Dim cr As New Bitmap(4, 4)
cr.SetPixel(0, 0, Color.Black)
cr.SetPixel(0, 1...