This method retrieves the RGB values (or ARGB values) and palette number of the specified pixel in the Device Independent Bitmap (DIB).

Overloaded list:

Retrieves RGB values and palette number from specified pixel

[Visual Basic]
Public Function GetBitmapPixel(imgNo As Integer, x As Integer, y As Integer, palette As Byte, red As Byte, green As Byte, blue As Byte) As Boolean
[C#]
public bool GetBitmapPixel(int imgNo, int x, int y, ref byte palette, ref byte red, ref byte green, ref byte blue);

Retrieves ARGB values and palette number from specified pixel

[Visual Basic]
Public Function GetBitmapPixel(imgNo As Integer, x As Integer, y As Integer, palette As Byte, alpha As Byte, red As Byte, green As Byte, blue As Byte) As Boolean
[C#]
public bool GetBitmapPixel(int imgNo, int x, int y, ref byte palette, ref byte alpha, ref byte red, ref byte green, ref byte blue);

See Also

Effect Class | Effect Members

The ImageKit WPF is created by Newtone Corporation