Image.fromRawBuffer Method¶
Module: Image
Definition¶
Creates an Image from the specified raw data buffer.
@staticmethod
from_raw_buffer(pixels: bytearray, width: int, height: int, stride: int, src_pixel_format: PixelFormat, dst_pixel_format: PixelFormat) -> Image
Parameters
pixels
bytearrayin A buffer that contains image pixels.width
intin The width, in pixels, of the image.height
intin The height, in pixels, of the image.stride
intin The stride, in pixels, of the image.src_pixel_format
PixelFormatin The pixel format of the input image.dst_pixel_format
PixelFormatin The pixel format into which to convert the input image.
Returns
The newly created image.
Exceptions
An error has occurred during Face Library execution.
static Image fromRawBuffer(Uint8List? pixels, int width, int height, int stride, PixelFormat srcPixelFormat, PixelFormat dstPixelFormat)
Parameters
pixels
Uint8Listin A buffer that contains image pixels.width
intin The width, in pixels, of the image.height
intin The height, in pixels, of the image.stride
intin The stride, in pixels, of the image.srcPixelFormat
PixelFormatin The pixel format of the input image.dstPixelFormat
PixelFormatin The pixel format into which to convert the input image.
Returns
The newly created image.
Exceptions
An error has occurred during Face Library execution.
public static Image FromRawBuffer(byte[] pixels, int width, int height, int stride, PixelFormat srcPixelFormat, PixelFormat dstPixelFormat)
Parameters
pixels
byte[]in A buffer that contains image pixels.width
intin The width, in pixels, of the image.height
intin The height, in pixels, of the image.stride
intin The stride, in pixels, of the image.srcPixelFormat
PixelFormatin The pixel format of the input image.dstPixelFormat
PixelFormatin The pixel format into which to convert the input image.
Returns
The newly created image.
Exceptions
An error has occurred during Face Library execution.
public static Image fromRawBuffer(byte[] pixels, int width, int height, int stride, PixelFormat srcPixelFormat, PixelFormat dstPixelFormat) throws FaceException
Parameters
pixels
byte[]in A buffer that contains image pixels.width
intin The width, in pixels, of the image.height
intin The height, in pixels, of the image.stride
intin The stride, in pixels, of the image.srcPixelFormat
PixelFormatin The pixel format of the input image.dstPixelFormat
PixelFormatin The pixel format into which to convert the input image.
Returns
The newly created image.
Exceptions
An error has occurred during Face Library execution.
public static func fromRawBuffer(pixels: [UInt8], width: Int32, height: Int32, stride: Int32, srcPixelFormat: PixelFormat, dstPixelFormat: PixelFormat) throws -> Image
Parameters
pixels
[UInt8]in A buffer that contains image pixels.width
Int32in The width, in pixels, of the image.height
Int32in The height, in pixels, of the image.stride
Int32in The stride, in pixels, of the image.srcPixelFormat
PixelFormatin The pixel format of the input image.dstPixelFormat
PixelFormatin The pixel format into which to convert the input image.
Returns
The newly created image.
Exceptions
An error has occurred during Face Library execution.
int id3FaceImage_FromRawBuffer (
ID3_FACE_IMAGE hImage,
unsigned char * pixels,
int pixelsSize,
int width,
int height,
int stride,
id3FacePixelFormat eSrcPixelFormat,
id3FacePixelFormat eDstPixelFormat)
Parameters
hImage
ID3_FACE_IMAGEin Handle to the Image object.pixels
unsigned char *in A buffer that contains image pixels.pixelsSize
intin Size of the ‘pixels’ buffer.width
intin The width, in pixels, of the image.height
intin The height, in pixels, of the image.stride
intin The stride, in pixels, of the image.eSrcPixelFormat
id3FacePixelFormatin The pixel format of the input image.eDstPixelFormat
id3FacePixelFormatin The pixel format into which to convert the input image.
Returns