com.google.zxing.oned
Class OneDimensionalCodeWriter

java.lang.Object
  extended by com.google.zxing.oned.OneDimensionalCodeWriter
All Implemented Interfaces:
Writer
Direct Known Subclasses:
CodaBarWriter, Code128Writer, Code39Writer, ITFWriter, UPCEANWriter

public abstract class OneDimensionalCodeWriter
extends Object
implements Writer

Encapsulates functionality and implementation that is common to one-dimensional barcodes.

Author:
dsbnatut@gmail.com (Kazuki Nishiura)

Constructor Summary
OneDimensionalCodeWriter()
           
 
Method Summary
protected static int appendPattern(boolean[] target, int pos, int[] pattern, boolean startColor)
          Appends the given pattern to the target array starting at pos.
abstract  boolean[] encode(String contents)
          Encode the contents to byte array expression of one-dimensional barcode.
 BitMatrix encode(String contents, BarcodeFormat format, int width, int height)
          Encode a barcode using the default settings.
 BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints)
          Encode the contents following specified format.
 int getDefaultMargin()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OneDimensionalCodeWriter

public OneDimensionalCodeWriter()
Method Detail

encode

public BitMatrix encode(String contents,
                        BarcodeFormat format,
                        int width,
                        int height)
                 throws WriterException
Description copied from interface: Writer
Encode a barcode using the default settings.

Specified by:
encode in 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
Throws:
WriterException

encode

public BitMatrix encode(String contents,
                        BarcodeFormat format,
                        int width,
                        int height,
                        Map<EncodeHintType,?> hints)
                 throws WriterException
Encode the contents following specified format. width and height are required size. This method may return bigger size BitMatrix when specified size is too small. The user can set both width and height to zero to get minimum size barcode. If negative value is set to width or height, IllegalArgumentException is thrown.

Specified by:
encode in 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
Throws:
WriterException

appendPattern

protected static int appendPattern(boolean[] target,
                                   int pos,
                                   int[] pattern,
                                   boolean startColor)
Appends the given pattern to the target array starting at pos.

Parameters:
startColor - starting color - false for white, true for black
Returns:
the number of elements added to target.

getDefaultMargin

public int getDefaultMargin()

encode

public abstract boolean[] encode(String contents)
Encode the contents to byte array expression of one-dimensional barcode. Start code and end code should be included in result, and side margins should not be included.

Returns:
a boolean[] of horizontal pixels (false = white, true = black)


Copyright © 2007-2012. All Rights Reserved.