public final class UPCAReader extends UPCEANReader
Implements decoding of the UPC-A format.
| Constructor and Description |
|---|
UPCAReader()
|
| Modifier and Type | Method and Description |
|---|---|
Result |
decode(BinaryBitmap
Locates and decodes a barcode in some format within an image.
|
Result |
decode(BinaryBitmap
Locates and decodes a barcode in some format within an image.
|
protected int |
decodeMiddle(BitArray
Subclasses override this to decode the portion of a barcode between the start and end guard patterns.
|
Result |
decodeRow(int rowNumber, BitArray
Like
UPCEANReader, but allows caller to inform method about where the UPC/EAN start pattern is found.
|
Result |
decodeRow(int rowNumber, BitArray
Attempts to decode a one-dimensional barcode format given a single row of an image.
|
patternMatchVariance, recordPattern, recordPatternInReverse, resetpublic ResultdecodeRow(int rowNumber, BitArray row, int[] startGuardRange, Map <DecodeHintType ,?> hints) throws NotFoundException , FormatException , ChecksumException
UPCEANReader
Like UPCEANReader, 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.
decodeRow in class
UPCEANReader
rowNumber - row index into the image
row - encoding of the row of the barcode image
startGuardRange - start/end column where the opening start pattern was found
hints - optional hints that influence decoding
Result encapsulating the result of decoding a barcode in the row
NotFoundException - if no potential barcode is found
FormatException - if a potential barcode is found but format is invalid
ChecksumException - if a potential barcode is found but does not pass its checksum
public ResultdecodeRow(int rowNumber, BitArray row, Map <DecodeHintType ,?> hints) throws NotFoundException , FormatException , ChecksumException
OneDReader
Attempts to decode a one-dimensional barcode format given a single row of an image.
decodeRow in class
UPCEANReader
rowNumber - row number from top of the row
row - the black/white pixel data of the row
hints - decode hints
Result containing encoded string and start/end of barcode
NotFoundException - if no potential barcode is found
FormatException - if a potential barcode is found but format is invalid
ChecksumException - if a potential barcode is found but does not pass its checksum
public Resultdecode(BinaryBitmap image) throws NotFoundException , FormatException
Reader
decode in interface
Reader
decode in class
OneDReader
image - image of barcode to decode
NotFoundException - if no potential barcode is found
FormatException - if a potential barcode is found but format is invalid
public Resultdecode(BinaryBitmap image, Map <DecodeHintType ,?> hints) throws NotFoundException , FormatException
Reader
decode in interface
Reader
decode in class
OneDReader
image - image of barcode to decode
hints - passed as a
Map from
DecodeHintType to arbitrary data. The meaning of the data depends upon the hint type. The implementation may or may not do anything with these hints.
NotFoundException - if no potential barcode is found
FormatException - if a potential barcode is found but format is invalid
protected int decodeMiddle(BitArrayrow, int[] startRange, StringBuilder resultString) throws NotFoundException
UPCEANReader
decodeMiddle in class
UPCEANReader
row - row of black/white values to search
startRange - start/end offset of start guard pattern
resultString -
StringBuilder to append decoded chars to
NotFoundException - if decoding could not complete successfully