イメージから指定したピクセルのRGBやパレット番号を取得します。

オーバーロード一覧

イメージから指定したピクセルのRGBやパレット番号を取得します。

[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, byte palette, byte red, byte green, byte blue)

イメージから指定したピクセルのARGBやパレット番号を取得します。

[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, byte palette, byte alpha, byte red, byte green, byte blue)

参照

ImageKit.Effect メンバ | Newtone.ImageKit.WPF.ImageKit