| Package | Description |
|---|---|
| org.krysalis.barcode4j |
Main package of Barcode4J.
|
| org.krysalis.barcode4j.impl |
This package contains the implementations (logic and layout) of the various barcode symbologies.
|
| org.krysalis.barcode4j.impl.codabar |
This package contains the Codabar implementation.
|
| org.krysalis.barcode4j.impl.code128 |
This package contains the Code 128 and the EAN 128 implementation.
|
| org.krysalis.barcode4j.impl.code39 |
This package contains the Code39 implementation.
|
| org.krysalis.barcode4j.impl.datamatrix |
This package contains the DataMatrix (ISO/IEC 16022:2000(E)) implementation.
|
| org.krysalis.barcode4j.impl.fourstate |
This package contains implementations for the four-state family of barcode symbologies.
|
| org.krysalis.barcode4j.impl.int2of5 |
This package contains the Interleave 2 of 5 implementation.
|
| org.krysalis.barcode4j.impl.pdf417 |
This package contains the PDF417 (ISO/IEC 15438:2001(E)) implementation.
|
| org.krysalis.barcode4j.impl.postnet |
This package contains the POSTNET implementation.
|
| org.krysalis.barcode4j.impl.qr |
This package contains the QR Code (ISO/IEC 18004:2006(E)) implementation.
|
| org.krysalis.barcode4j.impl.upcean |
This package contains the UPC and EAN implementations.
|
| org.krysalis.barcode4j.output |
This package contains the basic infrastructure for supporting various output formats.
|
| org.krysalis.barcode4j.output.bitmap |
This package contains classes for barcode output to bitmap images.
|
| org.krysalis.barcode4j.output.eps |
This package contains classes for barcode output to EPS (Encapsulated PostScript).
|
| org.krysalis.barcode4j.output.java2d |
This package contains classes for barcode output via the Java2D API (Graphics2D, AWT).
|
| org.krysalis.barcode4j.output.svg |
This package contains classes for barcode output to SVG.
|
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
BarcodeGenerator.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
| Modifier and Type | Field and Description |
|---|---|
protected BarcodeDimension |
DefaultCanvasLogicHandler.dimensions
the barcode dimensions
|
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
AbstractBarcodeBean.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
BarcodeDimension |
ConfigurableBarcodeGenerator.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
CodabarBean.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
EAN128Bean.calcDimensions(String msg) |
BarcodeDimension |
Code128Bean.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
Code39Bean.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
DataMatrixBean.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
USPSIntelligentMailBean.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
BarcodeDimension |
RoyalMailCBCBean.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
ITF14Bean.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
BarcodeDimension |
Interleaved2Of5Bean.calcDimensions(String msg) |
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
PDF417Bean.calcDimensions(String msg) |
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
POSTNETBean.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
QRCodeBean.calcDimensions(String msg)
Calculates the dimension of a barcode with the given message.
|
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
EAN8Bean.calcDimensions(String msg) |
BarcodeDimension |
UPCEBean.calcDimensions(String msg) |
BarcodeDimension |
UPCEANBean.calcDimensions(String msg) |
| Modifier and Type | Field and Description |
|---|---|
protected BarcodeDimension |
AbstractCanvasProvider.bardim
the cached barcode dimensions
|
| Modifier and Type | Method and Description |
|---|---|
BarcodeDimension |
AbstractCanvasProvider.getDimensions()
Returns the barcode dimensions once established.
|
BarcodeDimension |
CanvasProvider.getDimensions()
Returns the barcode dimensions once established.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Canvas.establishDimensions(BarcodeDimension dim)
Sets the dimensions of the barcode.
|
void |
AbstractCanvasProvider.establishDimensions(BarcodeDimension dim)
Sets the dimensions of the barcode.
|
void |
CanvasProvider.establishDimensions(BarcodeDimension dim)
Sets the dimensions of the barcode.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BitmapCanvasProvider.establishDimensions(BarcodeDimension dim)
Sets the dimensions of the barcode.
|
static Graphics2D |
BitmapBuilder.prepareGraphics2D(BufferedImage image,
BarcodeDimension dim,
int orientation,
boolean antiAlias)
Prepares a Graphics2D object for painting on a given BufferedImage.
|
static BufferedImage |
BitmapBuilder.prepareImage(BarcodeDimension dim,
int resolution,
int imageType)
Prepares a BufferedImage to paint to.
|
static BufferedImage |
BitmapBuilder.prepareImage(BarcodeDimension dim,
int orientation,
int resolution,
int imageType)
Prepares a BufferedImage to paint to.
|
| Modifier and Type | Method and Description |
|---|---|
void |
EPSCanvasProvider.establishDimensions(BarcodeDimension dim)
Sets the dimensions of the barcode.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Java2DCanvasProvider.establishDimensions(BarcodeDimension dim)
Sets the dimensions of the barcode.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SVGCanvasProvider.establishDimensions(BarcodeDimension dim)
Sets the dimensions of the barcode.
|
Copyright © 2003–2023. All rights reserved.