public class BarCode
extends java.lang.Object
The iText barcode API and ZXing library can be cumbersome to use directly. This wrapper provides a more user-friendly interface, especially tailored for generating barcodes and QR codes in reports where most of the complexity of these APIs is unnecessary.
This class aims to streamline the creation and customization of barcodes and QR codes, providing sensible defaults and easy access to commonly used features of both the iText and ZXing APIs.
com.itextpdf.text.pdf.Barcode
,
com.itextpdf.text.pdf.BarcodeEAN
,
com.google.zxing
Modifier and Type | Method and Description |
---|---|
static java.awt.Image |
code128(java.lang.String code128)
Takes a String and returns an Image showing the correct CODE128 barcode.
|
static java.awt.Image |
code128(java.lang.String code128,
boolean ignoreErrors) |
static java.awt.Image |
ean13(java.lang.String eanCode)
Takes a String and returns an Image showing the correct EAN13 barcode.
|
static java.awt.Image |
ean13(java.lang.String eanCode,
boolean ignoreErrors) |
static java.awt.Image |
error(java.lang.String msgL10nKey,
java.lang.String wrongEANCode,
boolean ignoreErrors)
Signals an IllegalArgumentException with the passed message or returns null if ignoreErrors is true.
|
static java.awt.Image |
getEAN13Image(java.lang.Long id)
Takes a Long, converts it to a String, prepends it with zeros to get a length of 12 chars
and returns an Image showing the correct EAN13 code.
|
static java.awt.Image |
getEAN13Image(java.lang.String eanCode)
Takes a String with a length of 12 chars (or 12 chars plus checksum char)
and returns an Image showing the correct EAN13 code.
|
static java.awt.Image |
getEAN13Image(java.lang.String eanCode,
boolean ignoreErrors) |
static java.awt.Image |
getEAN8Image(java.lang.String eanCode)
Takes a String with a length of 7 chars (or 7 chars plus checksum char)
and returns an Image showing the correct EAN8 code.
|
static java.awt.Image |
getEAN8Image(java.lang.String eanCode,
boolean ignoreErrors) |
static java.awt.Image |
getEANImage(int codeType,
java.lang.String eanCode)
Takes a code type and a String and returns an Image showing the correct EAN-code for the passed codetype,
using the passed foreground and background colors, only containing the bars without any text.
|
static java.awt.Image |
getEANImage(int codeType,
java.lang.String eanCode,
java.awt.Color foreground) |
static java.awt.Image |
getEANImage(int codeType,
java.lang.String eanCode,
java.awt.Color foreground,
java.awt.Color background) |
static java.awt.Image |
getQRCodeImage(java.lang.String qrCode)
Takes a String and a size and returns an Image showing the correct QR code in the given size.
|
static java.awt.Image |
getQRCodeImage(java.lang.String qrCode,
int size) |
static java.awt.Image |
getQRCodeImage(java.lang.String qrCode,
int size,
boolean ignoreErrors) |
public static java.awt.Image getEAN13Image(java.lang.Long id)
id
- a Long that shall be rendered as EAN13 barcodepublic static java.awt.Image getEAN13Image(java.lang.String eanCode)
eanCode
- a String of length 12 or 13 chars (with checksum) that shall be rendered as EAN13 barcodeignoreErrors
- whether errors should be ignored or not, defaults to truejava.lang.IllegalArgumentException
- in case of an error if ignoreErrors is falsepublic static java.awt.Image getEAN13Image(java.lang.String eanCode, boolean ignoreErrors)
public static java.awt.Image getEAN8Image(java.lang.String eanCode)
eanCode
- a String of length 7 or 8 chars (with checksum) that shall be rendered as EAN8 barcodeignoreErrors
- whether errors should be ignored or not, defaults to truejava.lang.IllegalArgumentException
- in case of an error if ignoreErrors is falsepublic static java.awt.Image getEAN8Image(java.lang.String eanCode, boolean ignoreErrors)
public static java.awt.Image error(java.lang.String msgL10nKey, java.lang.String wrongEANCode, boolean ignoreErrors)
msgL10nKey
- a String with the L10n key for rendering a message to log and to use in a possibly signalled IllegalArgumentExceptionwrongEANCode
- the erroneous EAN code that triggered the errorignoreErrors
- if true, null is returned, otherwise an IllegalArgumentException is signalledjava.lang.IllegalArgumentException
- if ignoreErrors is falsepublic static java.awt.Image getEANImage(int codeType, java.lang.String eanCode)
codeType
- an int representing a type of barcode, see com.lowagie.text.pdf.Barcode#setCodeType(int) for valid typeseanCode
- a String of the correct length for the selected type of barcode that shall be renderedforeground
- the foreground color to use for the barcode, defaults to Color.BLACKbackground
- the background color to use for the barcode, defaults to Color.WHITEpublic static java.awt.Image getEANImage(int codeType, java.lang.String eanCode, java.awt.Color foreground)
public static java.awt.Image getEANImage(int codeType, java.lang.String eanCode, java.awt.Color foreground, java.awt.Color background)
public static java.awt.Image getQRCodeImage(java.lang.String qrCode)
qrCode
- a String that shall be rendered as QR codesize
- (will be ignored and kept only for compatibility). The size will be data-dependent.ignoreErrors
- whether errors should be ignored or not, defaults to trueIRuntimeException
- in case of an error if ignoreErrors is falsepublic static java.awt.Image getQRCodeImage(java.lang.String qrCode, int size)
public static java.awt.Image getQRCodeImage(java.lang.String qrCode, int size, boolean ignoreErrors)
public static java.awt.Image ean13(java.lang.String eanCode)
eanCode
- a String that shall be rendered as EAN13 barcodeignoreErrors
- whether errors should be ignored or not, defaults to truejava.lang.RuntimeException
- in case of an error if ignoreErrors is falsepublic static java.awt.Image ean13(java.lang.String eanCode, boolean ignoreErrors)
public static java.awt.Image code128(java.lang.String code128)
code128
- a String that shall be rendered as CODE128 barcodeignoreErrors
- whether errors should be ignored or not, defaults to truejava.lang.RuntimeException
- in case of an error if ignoreErrors is falsepublic static java.awt.Image code128(java.lang.String code128, boolean ignoreErrors)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.