Class AztecReader
This implementation can detect and decode Aztec codes in an image.
public class AztecReader : Reader
- Inheritance
-
AztecReader
- Implements
- Inherited Members
Constructors
AztecReader()
public AztecReader()
Methods
decode(BinaryBitmap)
Locates and decodes a barcode in some format within an image.
public Result decode(BinaryBitmap image)
Parameters
image
BinaryBitmapimage of barcode to decode
Returns
- Result
a String representing the content encoded by the Data Matrix code
decode(BinaryBitmap, IDictionary<DecodeHintType, object>)
Locates and decodes a Data Matrix code in an image.
public Result decode(BinaryBitmap image, IDictionary<DecodeHintType, object> hints)
Parameters
image
BinaryBitmapimage of barcode to decode
hints
IDictionary<DecodeHintType, object>passed as a {@link java.util.Hashtable} from {@link com.google.zxing.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.
Returns
- Result
String which the barcode encodes
reset()
Resets any internal state the implementation has after a decode, to prepare it for reuse.
public void reset()