DetectedFinger.fromBuffer Method¶
Module: DetectedFinger
Definition¶
Imports the finger object from a buffer.
@staticmethod
from_buffer(data: bytearray) -> DetectedFinger
Parameters
data
bytearrayin 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
data
Uint8Listin 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
data
byte[]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
data
byte[]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
hDetectedFinger
ID3_DETECTED_FINGERin Handle to the DetectedFinger object.data
unsigned char *in Buffer to import the finger object from.dataSize
intin Size of the ‘data’ buffer.
Returns