DetectedFinger.fromBuffer Method

Module: DetectedFinger

Definition

Imports the finger object from a buffer.

@staticmethod
from_buffer(data: bytearray) -> DetectedFinger

Parameters

data bytearray
in 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 Uint8List
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)

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_FINGER
in Handle to the DetectedFinger object.

data unsigned char *
in Buffer to import the finger object from.

dataSize int
in Size of the ‘data’ buffer.

Returns

int
An error code.
See id3FingerError file for the list of possible error codes.