Use the Bitmap.GetPixel method.
[C#]
Color c = myBitmap.GetPixel( xPos, yPos);
[VB.NET}
Dim c as Color = myBitmap.GetPixel( xPos, yPos)
Use the Bitmap.GetPixel method.
[C#]
Color c = myBitmap.GetPixel( xPos, yPos);
[VB.NET}
Dim c as Color = myBitmap.GetPixel( xPos, yPos)
Share with