Package com.google.zxing.aztec
Class AztecWriter
java.lang.Object
com.google.zxing.aztec.AztecWriter
- All Implemented Interfaces:
Writer
Renders an Aztec code as a
BitMatrix
.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionencode
(String contents, BarcodeFormat format, int width, int height) Encode a barcode using the default settings.encode
(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType, ?> hints)
-
Constructor Details
-
AztecWriter
public AztecWriter()
-
-
Method Details
-
encode
Description copied from interface:Writer
Encode a barcode using the default settings. -
encode
public BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType, ?> hints) - Specified by:
encode
in interfaceWriter
- Parameters:
contents
- The contents to encode in the barcodeformat
- The barcode format to generatewidth
- The preferred width in pixelsheight
- The preferred height in pixelshints
- Additional parameters to supply to the encoder- Returns:
BitMatrix
representing encoded barcode image
-