Image.GetPixel Method

SFML.Net

ImageGetPixel Method
Get a pixel from the image

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public Color GetPixel(
	uint x,
	uint y
)
Public Function GetPixel ( 
	x As UInteger,
	y As UInteger
) As Color
public:
Color GetPixel(
	unsigned int x, 
	unsigned int y
)
member GetPixel : 
        x : uint32 * 
        y : uint32 -> Color 

Parameters

x
Type: SystemUInt32
X coordinate of pixel in the image
y
Type: SystemUInt32
Y coordinate of pixel in the image

Return Value

Type: Color
Color of pixel (x, y)
See Also