DetectedFinger.fromBuffer Method¶
Module: DetectedFinger
Definition¶
Imports the finger object from a buffer.
@staticmethod
from_buffer(data: bytearray) -> DetectedFinger
Parameters
databytearrayin Buffer to import the finger object from.
Returns
The newly created detected finger.
Exceptions
An error has occurred during Finger Library execution.
static DetectedFinger fromBuffer(Uint8List? data)
Parameters
dataUint8Listin Buffer to import the finger object from.
Returns
The newly created detected finger.
Exceptions
An error has occurred during Finger Library execution.
public static DetectedFinger FromBuffer(byte[] data)
Parameters
databyte[]in Buffer to import the finger object from.
Returns
The newly created detected finger.
Exceptions
An error has occurred during Finger Library execution.
public static DetectedFinger fromBuffer(byte[] data) throws FingerException
Parameters
databyte[]in Buffer to import the finger object from.
Returns
The newly created detected finger.
Exceptions
An error has occurred during Finger Library execution.
public static func fromBuffer(data: [UInt8]) throws -> DetectedFinger
Parameters
data[UInt8]in Buffer to import the finger object from.
Returns
The newly created detected finger.
Exceptions
An error has occurred during Finger Library execution.
int id3DetectedFinger_FromBuffer (
ID3_DETECTED_FINGER hDetectedFinger,
unsigned char * data,
int dataSize)
Parameters
hDetectedFingerID3_DETECTED_FINGERin Handle to the DetectedFinger object.dataunsigned char *in Buffer to import the finger object from.dataSizeintin Size of the ‘data’ buffer.
Returns