Class ImageReturnProcessor
java.lang.Object
com.microblink.blinkid.entities.Entity<T>
com.microblink.blinkid.entities.processors.Processor<ImageReturnProcessor.Result>
com.microblink.blinkid.entities.processors.imageReturn.ImageReturnProcessor
- All Implemented Interfaces:
android.os.Parcelable
Processor that will simply save given image.
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final android.os.Parcelable.Creator<ImageReturnProcessor>Fields inherited from class com.microblink.blinkid.entities.processors.Processor
CLASS_NAMEFields inherited from interface android.os.Parcelable
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()Create a copy of the entity.voidconsumeResultFrom(Entity other) Consume result from other entity.protected voiddeserializeNativeSettings(byte[] serializedSettings) protected byte[]voidsetEncodeImage(boolean encodeImage) Defines whether saved image will also be encoded as JPEG.booleanDefines whether saved image will also be encoded as JPEG.protected voidterminateNative(long nativeContext) Methods inherited from class com.microblink.blinkid.entities.Entity
describeContents, finalize, getNativeContext, getResult, nativeGetNativeResultContext, readFromParcel, writeToParcel
-
Field Details
-
CREATOR
-
-
Constructor Details
-
ImageReturnProcessor
public ImageReturnProcessor()
-
-
Method Details
-
setEncodeImage
public void setEncodeImage(boolean encodeImage) Defines whether saved image will also be encoded as JPEG. If set to false, only original image will be saved. By default, this is set to 'false' -
shouldEncodeImage
public boolean shouldEncodeImage()Defines whether saved image will also be encoded as JPEG. If set to false, only original image will be saved. By default, this is set to 'false' -
terminateNative
protected void terminateNative(long nativeContext) - Specified by:
terminateNativein classEntity<ImageReturnProcessor.Result>
-
serializeNativeSettings
@Nullable protected byte[] serializeNativeSettings()- Specified by:
serializeNativeSettingsin classEntity<ImageReturnProcessor.Result>
-
deserializeNativeSettings
protected void deserializeNativeSettings(@NonNull byte[] serializedSettings) - Specified by:
deserializeNativeSettingsin classEntity<ImageReturnProcessor.Result>
-
clone
Description copied from class:EntityCreate a copy of the entity. This is required if properties of the entity must be modified while background thread performs processing. In order to avoid race conditions, changing properties is not allowed while entity is used in background processing. However, you are able to make a copy of the entity, change properties of it and then update theRecognizerRunnerVieworRecognizerRunnerwith the updated entity hierarchy.- Specified by:
clonein classEntity<ImageReturnProcessor.Result>- Returns:
- a copy of the entity
-
consumeResultFrom
Description copied from class:EntityConsume result from other entity. The result from other will be put instead current result of this entity. This method is used insideBaseIntentTransferable.loadFromIntent(Intent)and similar methods to replace the result content of the saved entities with results that have arrived overIntent- Specified by:
consumeResultFromin classEntity<ImageReturnProcessor.Result>- Parameters:
other- Entity from which result should be consumed.
-