Package com.google.zxing.qrcode
Class QRCodeWriter
java.lang.Object
com.google.zxing.qrcode.QRCodeWriter
- All Implemented Interfaces:
Writer
This object renders a QR Code as a BitMatrix 2D array of greyscale values.
- Author:
- dswitkin@google.com (Daniel Switkin)
-
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) static BitMatrixrenderResult(QRCode code, int width, int height, int quietZone)
-
Constructor Details
-
QRCodeWriter
public QRCodeWriter()
-
-
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
-
renderResult
Renders the givenQRCodeas aBitMatrix, scaling the same to be compliant with the provided dimensions.If no scaling is required, both
widthandheightarguments should be non-positive numbers.- Parameters:
code-QRCodeto be adapted as aBitMatrixwidth- desired width for theQRCode(in pixel units)height- desired height for theQRCode(in pixel units)quietZone- the size of the QR quiet zone (in pixel units)- Returns:
BitMatrixinstance- Throws:
IllegalStateException- ifcodedoes not have aMatrixNullPointerException- ifcodeisnull
-