IDrawingFactory.CreateBitmapFromPixelByteArray

IDrawingFactory.CreateBitmapFromPixelByteArray method

Creates a bitmap from the specified pixel byte array with the specified width and height.

public IBitmap CreateBitmapFromPixelByteArray(byte[] byteArray, int width, int height)
ParameterTypeDescription
byteArrayByte[]The byte array containing the pixel data.
widthInt32The width of the bitmap.
heightInt32The height of the bitmap.

Return Value

The created IBitmap.

See Also