Eto.Drawing.Bitmap.GetPixel C# (CSharp) Method

GetPixel() public method

Gets the color of the pixel at the specified coordinates.
Note that this method can be extremely slow to go through each pixel of a bitmap. If you need better performance, use Lock to get access to the bitmap's pixel buffer directly, then optionally use BitmapData.GetPixel(int,int) to get each pixel value.
public GetPixel ( int x, int y ) : Color
x int The x coordinate
y int The y coordinate
return Color
		public Color GetPixel(int x, int y)
		{
			return Handler.GetPixel(x, y);
		}

Same methods

Bitmap::GetPixel ( Point position ) : Color