Class Pdf417Recognizer
java.lang.Object
com.microblink.blinkinput.entities.Entity<T>
com.microblink.blinkinput.entities.recognizers.Recognizer<Pdf417Recognizer.Result>
com.microblink.blinkinput.entities.recognizers.blinkbarcode.pdf417.Pdf417Recognizer
- All Implemented Interfaces:
android.os.Parcelable
Deprecated.
A recognizer that can scan PDF417 2D barcodes.
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final android.os.Parcelable.Creator<Pdf417Recognizer>Deprecated.Fields inherited from interface android.os.Parcelable
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()Deprecated.Create a copy of the entity.voidconsumeResultFrom(Entity other) Deprecated.Consume result from other entity.protected voiddeserializeNativeSettings(byte[] serializedSettings) Deprecated.booleanDeprecated.Allow scanning PDF417 barcodes which don't have quiet zone surrounding it (e.g.booleanDeprecated.Enables scanning of barcodes with inverse intensity values (e.g.booleanDeprecated.Enable decoding of non-standard PDF417 barcodes, but without guarantee that all data will be read.protected byte[]Deprecated.voidsetNullQuietZoneAllowed(boolean nullQuietZoneAllowed) Deprecated.Allow scanning PDF417 barcodes which don't have quiet zone surrounding it (e.g.voidsetScanInverse(boolean scanInverse) Deprecated.Enables scanning of barcodes with inverse intensity values (e.g.voidsetScanUncertain(boolean scanUncertain) Deprecated.Enable decoding of non-standard PDF417 barcodes, but without guarantee that all data will be read.protected voidterminateNative(long nativeContext) Deprecated.Methods inherited from class com.microblink.blinkinput.entities.recognizers.Recognizer
getName, isExcludedFromPing, requiresAutofocus, requiresLandscapeModeMethods inherited from class com.microblink.blinkinput.entities.Entity
describeContents, finalize, getNativeContext, getResult, nativeGetNativeResultContext, readFromParcel, writeToParcel
-
Field Details
-
CREATOR
Deprecated.
-
-
Constructor Details
-
Pdf417Recognizer
public Pdf417Recognizer()Deprecated.
-
-
Method Details
-
setScanUncertain
public void setScanUncertain(boolean scanUncertain) Deprecated.Enable decoding of non-standard PDF417 barcodes, but without guarantee that all data will be read. This option should be enabled for PDF417 barcode that has missing rows (i.e. not whole barcode is printed) By default, this is set to 'true' -
isScanUncertain
public boolean isScanUncertain()Deprecated.Enable decoding of non-standard PDF417 barcodes, but without guarantee that all data will be read. This option should be enabled for PDF417 barcode that has missing rows (i.e. not whole barcode is printed) By default, this is set to 'true' -
setNullQuietZoneAllowed
public void setNullQuietZoneAllowed(boolean nullQuietZoneAllowed) Deprecated.Allow scanning PDF417 barcodes which don't have quiet zone surrounding it (e.g. text concatenated with barcode). This option can significantly increase recognition time. By default, this is set to 'false' -
isNullQuietZoneAllowed
public boolean isNullQuietZoneAllowed()Deprecated.Allow scanning PDF417 barcodes which don't have quiet zone surrounding it (e.g. text concatenated with barcode). This option can significantly increase recognition time. By default, this is set to 'false' -
setScanInverse
public void setScanInverse(boolean scanInverse) Deprecated.Enables scanning of barcodes with inverse intensity values (e.g. white barcode on black background) By default, this is set to 'false' -
isScanInverse
public boolean isScanInverse()Deprecated.Enables scanning of barcodes with inverse intensity values (e.g. white barcode on black background) By default, this is set to 'false' -
terminateNative
protected void terminateNative(long nativeContext) Deprecated.- Specified by:
terminateNativein classEntity<Pdf417Recognizer.Result>
-
serializeNativeSettings
@Nullable protected byte[] serializeNativeSettings()Deprecated.- Specified by:
serializeNativeSettingsin classEntity<Pdf417Recognizer.Result>
-
deserializeNativeSettings
protected void deserializeNativeSettings(@NonNull byte[] serializedSettings) Deprecated.- Specified by:
deserializeNativeSettingsin classEntity<Pdf417Recognizer.Result>
-
clone
Deprecated.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 classRecognizer<Pdf417Recognizer.Result>- Returns:
- a copy of the entity
-
consumeResultFrom
Deprecated.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<Pdf417Recognizer.Result>- Parameters:
other- Entity from which result should be consumed.
-