public static RasterRenderBuffer CreateFromHtmlImageData(
int imageDataWidth,
int imageDataHeight,
byte[] imageData
)
imageDataWidth
The pixel width of the image data. Set this to ImageData.width. Must be a value greater than 0.
imageDataHeight
The pixel height of the image data. Set this to ImageData.height. Must be a value greater than 0.
imageData
The pixels data. Set this to ImageData.data. Must not be null.
The newly created RasterRenderBuffer object.
This is a helper method that sets the values of the returned RasterRenderBuffer as follows:
Member | Value |
---|---|
Width | |
Height | |
BitsPerPixel |
32. This is the only value supported in this version and cannot be changed. |
Order |
RasterByteOrder.Rgb since RGB color data is the format used by HTML Canvas ImageData. |
Internal buffer data |
This method will call SetDataArray with imageData. |