Package com.google.zxing.qrcode
Class QRCodeWriter
- java.lang.Object
- 
- com.google.zxing.qrcode.QRCodeWriter
 
- 
- 
Constructor SummaryConstructors Constructor Description QRCodeWriter()
 - 
Method SummaryAll Methods Instance Methods Concrete 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- 
encodepublic 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 interface- Writer
- Parameters:
- contents- The contents to encode in the barcode
- format- The barcode format to generate
- width- The preferred width in pixels
- height- The preferred height in pixels
- Returns:
- BitMatrixrepresenting encoded barcode image
- Throws:
- WriterException- if contents cannot be encoded legally in a format
 
 - 
encodepublic BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints) throws WriterException - Specified by:
- encodein interface- Writer
- Parameters:
- contents- The contents to encode in the barcode
- format- The barcode format to generate
- width- The preferred width in pixels
- height- The preferred height in pixels
- hints- Additional parameters to supply to the encoder
- Returns:
- BitMatrixrepresenting encoded barcode image
- Throws:
- WriterException- if contents cannot be encoded legally in a format
 
 
- 
 
-