Class BarcodeDataMatrix
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
static final int
ASCII encodation.static final int
The best encodation will be used.static final int
Binary encodation.static final int
C40 encodation.static final int
EDIFACT encodation.static final int
An error while parsing an extension.static final int
The dimensions given for the symbol are illegal.static final int
The text is too big for the symbology capabilities.static final int
Allows extensions to be embedded at the start of the text.static final int
No error.static final int
No encodation needed.static final int
Doesn't generate the image but returns all the other information.static final int
TEXT encodation.static final int
X12 encodation.Fields inherited from class com.itextpdf.barcodes.Barcode2D
DEFAULT_MODULE_SIZE
-
Constructor Summary
ConstructorDescriptionCreates an instance of this class.BarcodeDataMatrix
(String code) BarcodeDataMatrix
(String code, String encoding) -
Method Summary
Modifier and TypeMethodDescriptioncreateAwtImage
(Color foreground, Color background) Creates ajava.awt.Image
.createFormXObject
(Color foreground, float moduleSide, PdfDocument document) Creates a PdfFormXObject with the barcode with given module width and module height.createFormXObject
(Color foreground, PdfDocument document) Creates a PdfFormXObject with the barcode.Gets the maximum area that the barcode and the text, if any, will occupy.getBarcodeSize
(float moduleHeight, float moduleWidth) Gets the barcode sizeint
Gets the height of the barcode.int
Gets the barcode options.int
getWidth()
Gets the width of the barcode.int
getWs()
Gets the whitespace border around the barcode.placeBarcode
(PdfCanvas canvas, Color foreground) Places the barcode in aPdfCanvas
.placeBarcode
(PdfCanvas canvas, Color foreground, float moduleSide) int
setCode
(byte[] text, int textOffset, int textSize) Creates a barcode.int
Creates a barcode.void
setEncoding
(String encoding) setting encoding for data matrix code ( default encoding iso-8859-1)void
setHeight
(int height) Sets the height of the barcode.void
setOptions
(int options) Sets the options for the barcode generation.void
setWidth
(int width) Sets the width of the barcode.void
setWs
(int ws) Sets the whitespace border around the barcode.Methods inherited from class com.itextpdf.barcodes.Barcode2D
createFormXObject
-
Field Details
-
DM_NO_ERROR
public static final int DM_NO_ERRORNo error.- See Also:
-
DM_ERROR_TEXT_TOO_BIG
public static final int DM_ERROR_TEXT_TOO_BIGThe text is too big for the symbology capabilities.- See Also:
-
DM_ERROR_INVALID_SQUARE
public static final int DM_ERROR_INVALID_SQUAREThe dimensions given for the symbol are illegal.- See Also:
-
DM_ERROR_EXTENSION
public static final int DM_ERROR_EXTENSIONAn error while parsing an extension.- See Also:
-
DM_AUTO
public static final int DM_AUTOThe best encodation will be used.- See Also:
-
DM_ASCII
public static final int DM_ASCIIASCII encodation.- See Also:
-
DM_C40
public static final int DM_C40C40 encodation.- See Also:
-
DM_TEXT
public static final int DM_TEXTTEXT encodation.- See Also:
-
DM_B256
public static final int DM_B256Binary encodation.- See Also:
-
DM_X12
public static final int DM_X12X12 encodation.- See Also:
-
DM_EDIFACT
public static final int DM_EDIFACTEDIFACT encodation.- See Also:
-
DM_RAW
public static final int DM_RAWNo encodation needed. The bytes provided are already encoded.- See Also:
-
DM_EXTENSION
public static final int DM_EXTENSIONAllows extensions to be embedded at the start of the text.- See Also:
-
DM_TEST
public static final int DM_TESTDoesn't generate the image but returns all the other information.- See Also:
-
DEFAULT_DATA_MATRIX_ENCODING
- See Also:
-
-
Constructor Details
-
BarcodeDataMatrix
public BarcodeDataMatrix()Creates an instance of this class. -
BarcodeDataMatrix
-
BarcodeDataMatrix
-
-
Method Details
-
getBarcodeSize
Description copied from class:Barcode2D
Gets the maximum area that the barcode and the text, if any, will occupy. The lower left corner is always (0, 0).- Specified by:
-
getBarcodeSize
in classBarcode2D
- Returns:
- the size the barcode occupies.
-
placeBarcode
Description copied from class:Barcode2D
Places the barcode in aPdfCanvas
. The barcode is always placed at coordinates (0, 0). Use the translation matrix to move it elsewhere.- Specified by:
-
placeBarcode
in classBarcode2D
- Parameters:
-
canvas
- thePdfCanvas
where the barcode will be placed -
foreground
- the foreground color. It can benull
- Returns:
- the dimensions the barcode occupies
-
createFormXObject
Description copied from class:Barcode2D
Creates a PdfFormXObject with the barcode.- Specified by:
-
createFormXObject
in classBarcode2D
- Parameters:
-
foreground
- The color of the pixels. It can benull
-
document
- The document - Returns:
- the XObject.
-
createFormXObject
Creates a PdfFormXObject with the barcode with given module width and module height.- Parameters:
-
foreground
- The color of the pixels. It can benull
-
moduleSide
- The side (width and height) of the pixels. -
document
- The document - Returns:
- the XObject.
-
placeBarcode
-
createAwtImage
Creates ajava.awt.Image
. A successful call to the methodgenerate()
before calling this method is required.- Parameters:
-
foreground
- the color of the bars -
background
- the color of the background - Returns:
- the image
-
getBarcodeSize
Gets the barcode size- Parameters:
-
moduleHeight
- The height of the module -
moduleWidth
- The width of the module - Returns:
- The size of the barcode
-
setCode
Creates a barcode. TheString
is interpreted with the ISO-8859-1 encoding- Parameters:
-
text
- the text - Returns:
-
the status of the generation. It can be one of this values:
DM_NO_ERROR
- no error.
DM_ERROR_TEXT_TOO_BIG
- the text is too big for the symbology capabilities.
DM_ERROR_INVALID_SQUARE
- the dimensions given for the symbol are illegal.
DM_ERROR_EXTENSION
- an error was while parsing an extension.
-
setCode
public int setCode(byte[] text, int textOffset, int textSize) Creates a barcode.- Parameters:
-
text
- the text -
textOffset
- the offset to the start of the text -
textSize
- the text size - Returns:
-
the status of the generation. It can be one of this values:
DM_NO_ERROR
- no error.
DM_ERROR_TEXT_TOO_BIG
- the text is too big for the symbology capabilities.
DM_ERROR_INVALID_SQUARE
- the dimensions given for the symbol are illegal.
DM_ERROR_EXTENSION
- an error was while parsing an extension.
-
getHeight
public int getHeight()Gets the height of the barcode. Will contain the real height used after a successful call togenerate()
. This height doesn't include the whitespace border, if any.- Returns:
- the height of the barcode
-
setHeight
public void setHeight(int height) Sets the height of the barcode. If the height is zero it will be calculated. This height doesn't include the whitespace border, if any. The allowed dimensions are (width, height):10, 10
12, 12
18, 8
14, 14
32, 8
16, 16
26, 12
18, 18
20, 20
36, 12
22, 22
36, 16
24, 24
26, 26
48, 16
32, 32
36, 36
40, 40
44, 44
48, 48
52, 52
64, 64
72, 72
80, 80
88, 88
96, 96
104, 104
120, 120
132, 132
144, 144- Parameters:
-
height
- the height of the barcode
-
getWidth
public int getWidth()Gets the width of the barcode. Will contain the real width used after a successful call togenerate()
. This width doesn't include the whitespace border, if any.- Returns:
- the width of the barcode
-
setWidth
public void setWidth(int width) Sets the width of the barcode. If the width is zero it will be calculated. This width doesn't include the whitespace border, if any. The allowed dimensions are (width, height):10, 10
12, 12
18, 8
14, 14
32, 8
16, 16
26, 12
18, 18
20, 20
36, 12
22, 22
36, 16
24, 24
26, 26
48, 16
32, 32
36, 36
40, 40
44, 44
48, 48
52, 52
64, 64
72, 72
80, 80
88, 88
96, 96
104, 104
120, 120
132, 132
144, 144- Parameters:
-
width
- the width of the barcode
-
getWs
public int getWs()Gets the whitespace border around the barcode.- Returns:
- the whitespace border around the barcode
-
setWs
public void setWs(int ws) Sets the whitespace border around the barcode.- Parameters:
-
ws
- the whitespace border around the barcode
-
getOptions
public int getOptions()Gets the barcode options.- Returns:
- the barcode options
-
setOptions
public void setOptions(int options) Sets the options for the barcode generation. The options can be:One of:
DM_AUTO
- the best encodation will be used
DM_ASCII
- ASCII encodation
DM_C40
- C40 encodation
DM_TEXT
- TEXT encodation
DM_B256
- binary encodation
DM_X12
- X12 encodation
DM_EDIFACT
- EDIFACT encodation
DM_RAW
- no encodation. The bytes provided are already encoded and will be added directly to the barcode, using padding if needed. It assumes that the encodation state is left at ASCII after the last byte.
One of:
DM_EXTENSION
- allows extensions to be embedded at the start of the text:exxxxxx - ECI number xxxxxx
m5 - macro 5
m6 - macro 6
f - FNC1
saabbccccc - Structured Append, aa symbol position (1-16), bb total number of symbols (2-16), ccccc file identification (0-64515)
p - Reader programming
. - extension terminatorExample for a structured append, symbol 2 of 6, with FNC1 and ECI 000005. The actual text is "Hello".
s020600075fe000005.Hello
One of:
DM_TEST
- doesn't generate the image but returns all the other information.- Parameters:
-
options
- the barcode options
-
setEncoding
setting encoding for data matrix code ( default encoding iso-8859-1)- Parameters:
-
encoding
- encoding for data matrix code
-
getEncoding
-