Interface FullDocumentImageOptions
- All Known Implementing Classes:
BlinkCardRecognizer
public interface FullDocumentImageOptions
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
setReturnFullDocumentImage
(boolean returnFullDocumentImage) Sets whether full document image should be available inFullDocumentImageResult
.boolean
Returns whether full document image will be available inFullDocumentImageResult
.
-
Field Details
-
CLASS_NAME
- See Also:
-
-
Method Details
-
setReturnFullDocumentImage
void setReturnFullDocumentImage(boolean returnFullDocumentImage) Sets whether full document image should be available inFullDocumentImageResult
. If enabled, get image usingFullDocumentImageResult.getFullDocumentImage()
By default, this is set to 'false'. IMPORTANT NOTE: If you setMicroblinkSDK.setIntentDataTransferMode(com.microblink.blinkcard.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
By default, this is set to 'false'- Parameters:
returnFullDocumentImage
- whether full document image will be available inFullDocumentImageResult
.
-
shouldReturnFullDocumentImage
boolean shouldReturnFullDocumentImage()Returns whether full document image will be available inFullDocumentImageResult
. By default, this is set to 'false'. By default, this is set to 'false'- Returns:
- whether full document image will be available in
FullDocumentImageResult
.
-