SignaturePad.getCurrentFrame Method¶
Module: SignaturePad
Definition¶
Retrieves the most recent frame from the device’s live feed.
This function can be used to display the current state of the signature as it is being captured.
get_current_frame(self, frame: CaptureImage) -> bool
Parameters
frameCaptureImagein An object to store the current frame data from the live feed.
Returns
boolIndicates if the frame is currently available. true if the frame data is successfully retrieved, false otherwise.
Exceptions
An error has occurred during Devices Library execution.
bool getCurrentFrame(CaptureImage frame)
Parameters
frameCaptureImagein An object to store the current frame data from the live feed.
Returns
boolIndicates if the frame is currently available. true if the frame data is successfully retrieved, false otherwise.
Exceptions
An error has occurred during Devices Library execution.
public bool GetCurrentFrame(CaptureImage frame)
Parameters
frameCaptureImagein An object to store the current frame data from the live feed.
Returns
boolIndicates if the frame is currently available. true if the frame data is successfully retrieved, false otherwise.
Exceptions
An error has occurred during Devices Library execution.
public boolean getCurrentFrame(CaptureImage frame) throws DevicesException
Parameters
frameCaptureImagein An object to store the current frame data from the live feed.
Returns
booleanIndicates if the frame is currently available. true if the frame data is successfully retrieved, false otherwise.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesSignaturePad_GetCurrentFrame (
    ID3_DEVICES_SIGNATURE_PAD hSignaturePad,
    ID3_DEVICES_CAPTURE_IMAGE hFrame,
    bool * available)
Parameters
hSignaturePadID3_DEVICES_SIGNATURE_PADin Handle to the SignaturePad object.hFrameID3_DEVICES_CAPTURE_IMAGEin An object to store the current frame data from the live feed.availablebool *out Indicates if the frame is currently available. true if the frame data is successfully retrieved, false otherwise.
Returns