FingerIndexer.fromBuffer Method¶
Module: FingerIndexer
Definition¶
Imports the finger indexer object from a buffer.
@staticmethod
from_buffer(data: bytearray) -> FingerIndexer
Parameters
data
bytearrayin Buffer to import the finger template object from.
Returns
The newly created finger indexer.
Exceptions
An error has occurred during Finger Library execution.
static FingerIndexer fromBuffer(Uint8List? data)
Parameters
data
Uint8Listin Buffer to import the finger template object from.
Returns
The newly created finger indexer.
Exceptions
An error has occurred during Finger Library execution.
public static FingerIndexer FromBuffer(byte[] data)
Parameters
data
byte[]in Buffer to import the finger template object from.
Returns
The newly created finger indexer.
Exceptions
An error has occurred during Finger Library execution.
public static FingerIndexer fromBuffer(byte[] data) throws FingerException
Parameters
data
byte[]in Buffer to import the finger template object from.
Returns
The newly created finger indexer.
Exceptions
An error has occurred during Finger Library execution.
public static func fromBuffer(data: [UInt8]) throws -> FingerIndexer
Parameters
data
[UInt8]in Buffer to import the finger template object from.
Returns
The newly created finger indexer.
Exceptions
An error has occurred during Finger Library execution.
int id3FingerIndexer_FromBuffer (
ID3_FINGER_INDEXER hFingerIndexer,
unsigned char * data,
int dataSize)
Parameters
hFingerIndexer
ID3_FINGER_INDEXERin Handle to the FingerIndexer object.data
unsigned char *in Buffer to import the finger template object from.dataSize
intin Size of the ‘data’ buffer.
Returns