Class QRCodeWriter
- java.lang.Object
-
- zext.plantuml.com.google.zxing.qrcode.QRCodeWriter
-
-
Constructor Summary
Constructors Constructor Description QRCodeWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BitMatrixencode(java.lang.String contents, BarcodeFormat format, int multiple)Encode a barcode using the default settings.BitMatrixencode(java.lang.String contents, BarcodeFormat format, int multiple, java.util.Hashtable hints)
-
-
-
Method Detail
-
encode
public BitMatrix encode(java.lang.String contents, BarcodeFormat format, int multiple) 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 generate- Returns:
- The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)
- Throws:
WriterException
-
encode
public BitMatrix encode(java.lang.String contents, BarcodeFormat format, int multiple, java.util.Hashtable hints) throws WriterException
- Specified by:
encodein interfaceWriter- Parameters:
contents- The contents to encode in the barcodeformat- The barcode format to generatehints- Additional parameters to supply to the encoder- Returns:
- The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)
- Throws:
WriterException
-
-