Package com.google.zxing.oned
Class UPCAWriter
java.lang.Object
com.google.zxing.oned.UPCAWriter
- All Implemented Interfaces:
Writer
This object renders a UPC-A code as a
BitMatrix
.- Author:
- qwandor@google.com (Andrew Walbran)
-
Constructor Summary
-
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
-
UPCAWriter
public UPCAWriter()
-
-
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
-