Interface EncodeSignatureImageOptions
- All Known Implementing Classes:
BlinkIdMultiSideRecognizer
,BlinkIdSingleSideRecognizer
public interface EncodeSignatureImageOptions
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setEncodeSignatureImage
(boolean encodeSignatureImage) Sets whether signature image from document should be encoded in JPEG format and written into the corresponding recognition result.boolean
Returns whether encoding of signature image and writing it into the recognition result is enabled.
-
Field Details
-
CLASS_NAME
- See Also:
-
-
Method Details
-
setEncodeSignatureImage
void setEncodeSignatureImage(boolean encodeSignatureImage) Sets whether signature image from document should be encoded in JPEG format and written into the corresponding recognition result. By default, this is set to 'false'.
IMPORTANT NOTE: If you setMicroblinkSDK.setIntentDataTransferMode(com.microblink.blinkid.intent.IntentDataTransferMode)
toIntentDataTransferMode.STANDARD
recognizer which contains encoded image cannot be parcelized and passed byIntent
extras because of Android limitations on intent extras size. If you are using one of the provided scan activities and expect receiving scan results inActivity.onActivityResult(int, int, android.content.Intent)
method use eitherIntentDataTransferMode.OPTIMISED
orIntentDataTransferMode.PERSISTED_OPTIMISED
- Parameters:
encodeSignatureImage
- whether signature image should be encoded in JPEG format and written into the corresponding recognition result.
-
shouldEncodeSignatureImage
boolean shouldEncodeSignatureImage()Returns whether encoding of signature image and writing it into the recognition result is enabled. By default, this is set to 'false'.- Returns:
- whether encoding of signature image and writing it into the recognition result is enabled.
-