java.awt.image.BufferedImage | BarcodeBuilder.asBufferedImage() | Creates a BufferedImage of the barcode that can be used in java.awt transformations or other operations. |
---|
java.lang.String | BarcodeBuilder.asSVG() | Creates an SVG image for the barcode. |
---|
BarcodeURN | BarcodeBuilder.asURN() | Gets the String to as a {@link BarcodeURN} for this barcode. |
---|
BarcodeURN | BarcodeData.asURN() | Gets the URN representation of this barcode if it is encodable. |
---|
BarcodeURN | BarcodeData.asURN(int width, int height) | Gets the URN representation of this barcode if it is encodable, in the requested size. |
---|
java.lang.String | BarcodeBuilder.asURNString() | Gets the String to as a {@link BarcodeURN} for this barcode. |
---|
BarcodeURN | BarcodeType.createBarcodeURN(java.lang.String text, int width, int height) | Creates a BarcodeURN for a barcode type. |
---|
BarcodeURN | BarcodeType.createBarcodeURN(java.lang.String text, int width, int height, ErrorCorrectionLevel errorCorrectionLevel) | Creates a BarcodeURN for a barcode type. |
---|
static BarcodeURN | BarcodeURN.from(BarcodeType format, java.lang.String text, int width, int height) | Creates a BarcodeURN for a barcode format or type. |
---|
static BarcodeURN | BarcodeURN.from(BarcodeType format, java.lang.String text, int width, int height, ErrorCorrectionLevel errorCorrectionLevel) | Creates a BarcodeURN for a barcode format or type, and for the QR code format, an optional error correction level. |
---|
java.lang.String | BarcodeType.getSVG(java.lang.String text, int width, int height) | Creates an SVG image for the barcode type or format. |
---|
java.lang.String | BarcodeType.getSVG(java.lang.String text, int width, int height, ErrorCorrectionLevel errorCorrectionLevel) | Creates an SVG image for the barcode type or format. |
---|
java.io.File | BarcodeBuilder.toFile(java.io.File pngFile) | Writes the barcode to a file in .PNG format. |
---|
java.io.File | BarcodeBuilder.toFile(java.lang.String formatName, java.io.File file) | Writes the barcode to a file in the requested formatName such as "png" or "jpg". |
---|
void | BarcodeBuilder.toOutputStream(java.io.OutputStream pngOutputStream) | Writes the barcode to an output stream in .PNG format. |
---|
void | BarcodeBuilder.toOutputStream(java.lang.String formatName, java.io.OutputStream outputStream) | Writes the barcode to an output stream in .PNG format. |
---|