Package com.google.zxing
Interface Writer
-
- All Known Implementing Classes:
QRCodeWriter
public interface WriterThe base class for all objects which encode/generate a barcode image.- Author:
- dswitkin@google.com (Daniel Switkin)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BitMatrixencode(String contents, BarcodeFormat format, int width, int height)Encode a barcode using the default settings.BitMatrixencode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints)
-
-
-
Method Detail
-
encode
BitMatrix encode(String contents, BarcodeFormat format, int width, int height) throws WriterException
Encode a barcode using the default settings.- Parameters:
contents- The contents to encode in the barcodeformat- The barcode format to generatewidth- The preferred width in pixelsheight- The preferred height in pixels- Returns:
BitMatrixrepresenting encoded barcode image- Throws:
WriterException- if contents cannot be encoded legally in a format
-
encode
BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints) throws WriterException
- 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:
BitMatrixrepresenting encoded barcode image- Throws:
WriterException- if contents cannot be encoded legally in a format
-
-