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

GetPixel() public method

Gets the color of the pixel at the specified position
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(Point) to get each pixel value.
public GetPixel ( Point position ) : Color
position Point Position to get the color of the pixel.
return Color
		public Color GetPixel(Point position)
		{
			return GetPixel(position.X, position.Y);
		}

Same methods

Bitmap::GetPixel ( int x, int y ) : Color