Package com.google.zxing.oned
Class Code93Writer
java.lang.Object
com.google.zxing.oned.OneDimensionalCodeWriter
com.google.zxing.oned.Code93Writer
- All Implemented Interfaces:
- Writer
This object renders a CODE93 code as a BitMatrix
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected static intappendPattern(boolean[] target, int pos, int[] pattern, boolean startColor) Deprecated.without replacement; intended as an internal-only methodboolean[]Encode the contents to boolean array expression of one-dimensional barcode.protected Collection<BarcodeFormat>Methods inherited from class com.google.zxing.oned.OneDimensionalCodeWritercheckNumeric, encode, encode, encode, getDefaultMargin
- 
Constructor Details- 
Code93Writerpublic Code93Writer()
 
- 
- 
Method Details- 
getSupportedWriteFormats- Overrides:
- getSupportedWriteFormatsin class- OneDimensionalCodeWriter
 
- 
encodeDescription copied from class:OneDimensionalCodeWriterEncode the contents to boolean array expression of one-dimensional barcode. Start code and end code should be included in result, and side margins should not be included.- Specified by:
- encodein class- OneDimensionalCodeWriter
- Parameters:
- contents- barcode contents to encode. It should not be encoded for extended characters.
- Returns:
- a boolean[]of horizontal pixels (false = white, true = black)
 
- 
appendPattern@Deprecated protected static int appendPattern(boolean[] target, int pos, int[] pattern, boolean startColor) Deprecated.without replacement; intended as an internal-only method- Parameters:
- target- output to append to
- pos- start position
- pattern- pattern to append
- startColor- unused
- Returns:
- 9
 
 
-