Class OneDimensionalCodeWriter

    • Constructor Detail

      • OneDimensionalCodeWriter

        public OneDimensionalCodeWriter()
    • Method Detail

      • encode

        public final BitMatrix encode​(java.lang.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
        Returns:
        BitMatrix representing encoded barcode image
        Throws:
        WriterException - if contents cannot be encoded legally in a format
      • encode

        public BitMatrix encode​(java.lang.String contents,
                                BarcodeFormat format,
                                int width,
                                int height,
                                java.util.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
        Returns:
        BitMatrix representing encoded barcode image
        Throws:
        WriterException - if contents cannot be encoded legally in a format
      • appendPattern

        protected static int appendPattern​(boolean[] target,
                                           int pos,
                                           int[] pattern,
                                           boolean startColor)
        Parameters:
        target - encode black/white pattern into this array
        pos - position to start encoding at in target
        pattern - lengths of black/white runs to encode
        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​(java.lang.String contents)
        Encode 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.
        Parameters:
        contents - barcode contents to encode
        Returns:
        a boolean[] of horizontal pixels (false = white, true = black)