Note
See the Examples section of the GetReadWriteBitmapData method for examples.
ColorF GetColorF(
int x,
int y
)Function GetColorF (
x As Integer,
y As Integer
) As ColorFColorF GetColorF(
int x,
int y
)abstract GetColorF :
x : int *
y : int -> ColorF The returned value is a non-premultiplied color with 32 bits per channel in the linear color space, regardless of the underlying PixelFormat.
Line by line processing is also possible by obtaining the first row by the FirstRow property, getting the pixels by the IReadableBitmapDataRowMovable members and then moving to the next line by the MoveNextRow method.
To access the actual PixelFormat-dependent raw value you can use the ReadRaw method.
| ObjectDisposedException | This IReadableBitmapData has already been disposed. |
| ArgumentOutOfRangeException | x is less than zero or is greater than or equal to Width.
-or- y is less than zero or is greater than or equal to Height. |