FingerIndexer.fromBuffer Method¶
Module: FingerIndexer
Definition¶
Imports the finger indexer object from a buffer.
@staticmethod
from_buffer(data: bytearray) -> FingerIndexer
Parameters
databytearrayin 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
dataUint8Listin 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
databyte[]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
databyte[]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
hFingerIndexerID3_FINGER_INDEXERin Handle to the FingerIndexer object.dataunsigned char *in Buffer to import the finger template object from.dataSizeintin Size of the ‘data’ buffer.
Returns