| Modifier and Type | Method and Description |
|---|---|
static Barcode |
BarcodeFactory.create2of7(String data)
Creates a 2 of 7 (Codabar) linear barcode.
|
static Barcode |
BarcodeFactory.create3of9(String data,
boolean requiresChecksum)
Creates a Code 3 of 9 (Code 39) linear barcode.
|
static Barcode |
BarcodeFactory.createBookland(String isbn)
Creates a Bookland barcode, which is based on the EAN 13 Symbology.
|
static Barcode |
BarcodeFactory.createCodabar(String data)
Creates a Codabar linear barcode.
|
static Barcode |
BarcodeFactory.createCode128(String data)
Creates a Code 128 barcode that dynamically switches between character sets
to give the smallest possible encoding.
|
static Barcode |
BarcodeFactory.createCode128A(String data)
Creates a Code 128 barcode using the A character set.
|
static Barcode |
BarcodeFactory.createCode128B(String data)
Creates a Code 128 barcode using the B character set.
|
static Barcode |
BarcodeFactory.createCode128C(String data)
Creates a Code 128 barcode using the C character set.
|
static Barcode |
BarcodeFactory.createCode39(String data,
boolean requiresChecksum)
Creates a Code 39 linear barcode.
|
static Barcode |
BarcodeFactory.createEAN128(String data)
Creates a EAN 128 barcode.
|
static Barcode |
BarcodeFactory.createEAN13(String data)
Creates a barcode based on the EAN 13 Symbology.
|
static Barcode |
BarcodeFactory.createGlobalTradeItemNumber(String data)
Creates a Global Trade Item Number (GTIN) based on the UCC/EAN 128 symbology.
|
static Barcode |
BarcodeFactory.createInt2of5(String data)
Creates a barcode based on the Interleave 2 of 5 Symbology.
|
static Barcode |
BarcodeFactory.createInt2of5(String data,
boolean checkDigit)
Creates a barcode based on the Interleave 2 of 5 Symbology.
|
static Barcode |
BarcodeFactory.createMonarch(String data)
Creates a Monarch (Codabar) linear barcode.
|
static Barcode |
BarcodeFactory.createNW7(String data)
Creates a NW-7 (Codabar) linear barcode.
|
static Barcode |
BarcodeFactory.createPDF417(String data)
Creates a PDF417 two dimensional barcode.
|
static Barcode |
BarcodeFactory.createPostNet(String data)
Creates a PostNet linear barcode.
|
static Barcode |
BarcodeFactory.createRandomWeightUPCA(String data)
Creates a barcode based on the UPC-A Symbology signifying a random weight.
|
static Barcode |
BarcodeFactory.createSCC14ShippingCode(String data)
Creates an SCC-14 shipping code number based on the UCC/EAN 128 symbology.
|
static Barcode |
BarcodeFactory.createShipmentIdentificationNumber(String data)
Creates a shipment identification number based on the UCC/EAN 128 symbology.
|
static Barcode |
BarcodeFactory.createSSCC18(String data)
Creates an SSCC-18 number based on the UCC/EAN 128 symbology.
|
static Barcode |
BarcodeFactory.createStd2of5(String data)
Creates a barcode based on the Standard 2 of 5 Symbology.
|
static Barcode |
BarcodeFactory.createStd2of5(String data,
boolean checkDigit)
Creates a barcode based on the Standard 2 of 5 Symbology.
|
static Barcode |
BarcodeFactory.createUCC128(String applicationIdentifier,
String data)
Creates a UCC 128 barcode.
|
static Barcode |
BarcodeFactory.createUPCA(String data)
Creates a barcode based on the UPC-A Symbology.
|
static Barcode |
BarcodeFactory.createUSD3(String data,
boolean requiresChecksum)
Creates a USD3 (Code 39) linear barcode.
|
static Barcode |
BarcodeFactory.createUSD4(String data)
Creates a USD-4 (Codabar) linear barcode.
|
static Barcode |
BarcodeFactory.createUSPS(String data)
Creates a US Postal Service barcode based on the UCC/EAN 128 symbology.
|
protected Barcode |
BarcodeServlet.getBarcode(String type,
String data,
String appId,
boolean checkSum)
Returns the appropriate barcode for the speficied parameters.
|
static Barcode |
BarcodeFactory.parseEAN128(String encoded_data)
Create an EAN128 barcode with multiple application identifiers (AI's).
|
| Modifier and Type | Method and Description |
|---|---|
static BufferedImage |
BarcodeImageHandler.getImage(Barcode barcode)
Creates an image for a barcode that can be used in other GUI
components (e.g.
|
static void |
Main.outputEPS(Barcode barcode,
OutputStream fos) |
static void |
Main.outputPNG(Barcode barcode,
OutputStream fos) |
static void |
Main.outputSVG(Barcode barcode,
OutputStream fos) |
static void |
BarcodeImageHandler.saveGIF(Barcode barcode,
File f) |
static void |
BarcodeImageHandler.saveJPEG(Barcode barcode,
File f) |
static void |
BarcodeImageHandler.savePNG(Barcode barcode,
File f) |
static void |
BarcodeImageHandler.writeGIF(Barcode barcode,
OutputStream os)
write a GIF image to an OutputStream
|
static void |
BarcodeImageHandler.writeJPEG(Barcode barcode,
OutputStream os)
write a JPEG image to an OutputStream
|
static void |
BarcodeImageHandler.writePNG(Barcode barcode,
OutputStream os)
write a PNG image to an OutputStream
|
| Modifier and Type | Method and Description |
|---|---|
void |
BarcodeFormatter.format(Barcode barcode) |
void |
SVGFormatter.format(Barcode barcode) |
static String |
SVGFormatter.formatAsSVG(Barcode barcode) |
| Modifier and Type | Class and Description |
|---|---|
class |
LinearBarcode |
| Modifier and Type | Class and Description |
|---|---|
class |
CodabarBarcode
This is a concrete implementation of the Codabar barcode, AKA USD-4,
Monarch, NW-7 and 2of7.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Code128Barcode
This is a concrete implementation of the Code 128 barcode.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Code39Barcode
This is a concrete implementation of the Code 39 barcode, AKA 3of9,
USD-3.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BooklandBarcode |
class |
EAN13Barcode
This is a concrete implementation of the EAN13 barcode.
|
class |
UCCEAN128Barcode
An implementation of the UCC 128 and EAN 128 code formats.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PostNetBarcode |
| Modifier and Type | Class and Description |
|---|---|
class |
Int2of5Barcode
This is a concrete implementation of the Interleave 2 of 5 barcode
The Interleave 2 of 5 barcode requires an even number of characters.
|
class |
Std2of5Barcode
This is a concrete implementation of the Standard 2 of 5 barcode
The Standard 2 of 5 barcode requires an even number of characters.
|
| Modifier and Type | Class and Description |
|---|---|
class |
UPCABarcode
This is a concrete implementation of the UPC-A barcode.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PDF417Barcode
Implementation of the PDF417 two dimensional barcode format.
|
Copyright © 2003-2013 barbecue.sourceforge.net. All Rights Reserved.