Class MultiFormatWriter
java.lang.Object
com.google.zxing.MultiFormatWriter
- All Implemented Interfaces:
Writer
-
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
-
MultiFormatWriter
public MultiFormatWriter()
-
-
Method Details
-
encode
public BitMatrix encode(String contents, BarcodeFormat format, int width, int height) throws WriterException Description copied from interface:WriterEncode a barcode using the default settings.- Specified by:
encodein interfaceWriter- 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
public BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType, ?> hints) throws WriterException - Specified by:
encodein 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:
BitMatrixrepresenting encoded barcode image- Throws:
WriterException- if contents cannot be encoded legally in a format
-