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(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 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(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 x, int y, ref byte palette, ref byte, alpha, ref byte red, ref byte green, ref byte blue);

See Also

ImageKit.Effect Members | Newtone.ImageKit.Wpf.ImageKit

 

The ImageKit WPF is created by Newtone Corporation