Package com.google.zxing.datamatrix
Class DataMatrixWriter
java.lang.Object
com.google.zxing.datamatrix.DataMatrixWriter
- All Implemented Interfaces:
- Writer
This object renders a Data Matrix code as a BitMatrix 2D array of greyscale values.
- Author:
- dswitkin@google.com (Daniel Switkin), Guillaume Le Biller Added to zxing lib.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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- 
DataMatrixWriterpublic DataMatrixWriter()
 
- 
- 
Method Details- 
encodeDescription copied from interface:WriterEncode a barcode using the default settings.
- 
encodepublic BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType, ?> hints) - 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
 
 
-