Interface SignatureImageOptions
- All Known Implementing Classes:
BlinkIdMultiSideRecognizer,BlinkIdSingleSideRecognizer
public interface SignatureImageOptions
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoidsetReturnSignatureImage(boolean displaySignatureImage) Sets whether signature image should be available inSignatureImageResult.booleanReturns whether signature image will be available inSignatureImageResult.
-
Field Details
-
CLASS_NAME
- See Also:
-
-
Method Details
-
setReturnSignatureImage
void setReturnSignatureImage(boolean displaySignatureImage) Sets whether signature image should be available inSignatureImageResult. If enabled, get image usingSignatureImageResult.getSignatureImage()By default, this is set to 'false'. IMPORTANT NOTE: If you setMicroblinkSDK.setIntentDataTransferMode(com.microblink.blinkid.intent.IntentDataTransferMode)toIntentDataTransferMode.STANDARDrecognizer which contains encoded image cannot be parcelized and passed byIntentextras 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.OPTIMISEDorIntentDataTransferMode.PERSISTED_OPTIMISED- Parameters:
displaySignatureImage- whether signature image will be available inSignatureImageResult.
-
shouldReturnSignatureImage
boolean shouldReturnSignatureImage()Returns whether signature image will be available inSignatureImageResult. By default, this is set to 'false'.- Returns:
- whether signature image will be available in
SignatureImageResult.
-