FingerImage.toRawBuffer Method¶
Module: FingerImage
Definition¶
Copies image pixels in the specified format into a buffer.
to_raw_buffer(self, pixel_format: PixelFormat, buffer: ImageBuffer) -> None
Parameters
pixel_format
PixelFormatin The pixel format.buffer
ImageBufferin Buffer that receives the raw image data.
Exceptions
An error has occurred during Finger Library execution.
void toRawBuffer(PixelFormat pixelFormat, ImageBuffer buffer)
Parameters
pixelFormat
PixelFormatin The pixel format.buffer
ImageBufferin Buffer that receives the raw image data.
Exceptions
An error has occurred during Finger Library execution.
public void ToRawBuffer(PixelFormat pixelFormat, ImageBuffer buffer)
Parameters
pixelFormat
PixelFormatin The pixel format.buffer
ImageBufferin Buffer that receives the raw image data.
Exceptions
An error has occurred during Finger Library execution.
public void toRawBuffer(PixelFormat pixelFormat, ImageBuffer buffer) throws FingerException
Parameters
pixelFormat
PixelFormatin The pixel format.buffer
ImageBufferin Buffer that receives the raw image data.
Exceptions
An error has occurred during Finger Library execution.
public func toRawBuffer(pixelFormat: PixelFormat, buffer: ImageBuffer) throws
Parameters
pixelFormat
PixelFormatin The pixel format.buffer
ImageBufferin Buffer that receives the raw image data.
Exceptions
An error has occurred during Finger Library execution.
int id3FingerImage_ToRawBuffer (
ID3_FINGER_IMAGE hFingerImage,
id3FingerPixelFormat ePixelFormat,
ID3_FINGER_IMAGE_BUFFER hBuffer)
Parameters
hFingerImage
ID3_FINGER_IMAGEin Handle to the FingerImage object.ePixelFormat
id3FingerPixelFormatin The pixel format.hBuffer
ID3_FINGER_IMAGE_BUFFERin Buffer that receives the raw image data.
Returns