Note
See the Examples section of the GetReadWriteBitmapData method for examples.
Color64 GetColor64(
int x,
int y
)Function GetColor64 (
x As Integer,
y As Integer
) As Color64Color64 GetColor64(
int x,
int y
)abstract GetColor64 :
x : int *
y : int -> Color64 The returned value is a non-premultiplied color with 16 bits per channel in the sRGB 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. |