RawImage

RawImage class

A raw BGRA 32 bit (8-bit unsigned normalized values ranging from 0 to 255) image. The color components are stored in blue, green, red, and alpha order (least significant to most significant byte).

public sealed class RawImage : IRawImage

Constructors

NameDescription
RawImage(Bgra32[], int, int)Initializes a new instance of the RawImage.

Properties

NameDescription
Height { get; }The image height in px units. Read-only Int32.
Item { get; }Gets or sets the pixel at the specified position.
Pixels { get; }The image’s pixels. Read-only Bgra32’s array.
Width { get; }The image width in px units. Read-only Int32.

Methods

NameDescription
override ToString()

See Also