EAN13Reader class

Implements decoding of the EAN-13 format.

@author dswitkin@google.com (Daniel Switkin) @author Sean Owen @author alasdair@google.com (Alasdair Mackintosh)

Inheritance

Constructors

EAN13Reader()

Properties

barcodeFormat BarcodeFormat
Get the format of this decoder.
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

checkChecksum(String s) bool
@param s string of digits to check @return {@link #checkStandardUPCEANChecksum(CharSequence)} @throws FormatException if the string does not contain only digits
inherited
decode(BinaryBitmap image, [Map<DecodeHintType, Object>? hints]) Result
Locates and decodes a barcode in some format within an image. This method also accepts hints, each possibly associated to some data, which may help the implementation decode.
inherited
decodeEnd(BitArray row, int endStart) List<int>
inherited
decodeMiddle(BitArray row, List<int> startRange, StringBuilder result) int
Subclasses override this to decode the portion of a barcode between the start and end guard patterns.
override
decodeRow(int rowNumber, BitArray row, Map<DecodeHintType, Object>? hints, [List<int>? startGuardRange]) Result
Like {@link #decodeRow(int, BitArray, Map)}, but allows caller to inform method about where the UPC/EAN start pattern is found. This allows this to be computed once and reused across many implementations.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
reset() → void
Resets any internal state the implementation has after a decode, to prepare it for reuse.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

FIRST_DIGIT_ENCODINGS → const List<int>