Package com.google.zxing.pdf417
Class PDF417Writer
java.lang.Object
com.google.zxing.pdf417.PDF417Writer
- All Implemented Interfaces:
- Writer
- Author:
- Jacob Haynes, qwandor@google.com (Andrew Walbran)
- 
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- 
PDF417Writerpublic PDF417Writer()
 
- 
- 
Method Details- 
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
 
- 
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
 
 
-