FingerTemplate.toBuffer Method¶
Module: FingerTemplate
Definition¶
Exports the finger template object to a buffer.
to_buffer(self, format: FingerTemplateFormat) -> bytearray
Parameters
format
FingerTemplateFormatin Finger template buffer type to export the finger template object to.
Returns
bytearray
Buffer to export the finger template object to.
Exceptions
An error has occurred during Finger Library execution.
Uint8List toBuffer(FingerTemplateFormat format)
Parameters
format
FingerTemplateFormatin Finger template buffer type to export the finger template object to.
Returns
Uint8List
Buffer to export the finger template object to.
Exceptions
An error has occurred during Finger Library execution.
public byte[] ToBuffer(FingerTemplateFormat format)
Parameters
format
FingerTemplateFormatin Finger template buffer type to export the finger template object to.
Returns
byte[]
Buffer to export the finger template object to.
Exceptions
An error has occurred during Finger Library execution.
public byte[] toBuffer(FingerTemplateFormat format) throws FingerException
Parameters
format
FingerTemplateFormatin Finger template buffer type to export the finger template object to.
Returns
byte[]
Buffer to export the finger template object to.
Exceptions
An error has occurred during Finger Library execution.
public func toBuffer(format: FingerTemplateFormat) throws -> [UInt8]
Parameters
format
FingerTemplateFormatin Finger template buffer type to export the finger template object to.
Returns
[UInt8]
Buffer to export the finger template object to.
Exceptions
An error has occurred during Finger Library execution.
int id3FingerTemplate_ToBuffer (
ID3_FINGER_TEMPLATE hFingerTemplate,
id3FingerTemplateFormat eFormat,
unsigned char * data,
int * dataSize)
Parameters
hFingerTemplate
ID3_FINGER_TEMPLATEin Handle to the FingerTemplate object.eFormat
id3FingerTemplateFormatin Finger template buffer type to export the finger template object to.data
unsigned char *out Buffer to export the finger template object to.dataSize
int *in Size of the ‘data’ buffer. Receives the number of elements in the ‘data’ array.
Returns