Package com.logicaldoc.barcode
Class BarcodeWriter
java.lang.Object
com.logicaldoc.barcode.BarcodeWriter
Utility class used to produce barcode images.
- Since:
- 7.6
- Author:
- Marco Meschieri - LogicalDOC
-
Method Summary
Modifier and TypeMethodDescriptionstatic BufferedImage
static void
static String
writeEncoded
(String format, String code, int width, int height, boolean label) Generates the barcode and returns the Base64 encode of the resulting imagestatic String
writeQREncoded
(String code, int size) Generates the QR code and returns the Base64 encode of the resulting image
-
Method Details
-
write
public static void write(String format, String code, int width, int height, boolean label, File file) throws IOException - Throws:
IOException
-
write
public static BufferedImage write(String format, String code, int width, int height, boolean label) throws IOException - Throws:
IOException
-
writeEncoded
public static String writeEncoded(String format, String code, int width, int height, boolean label) throws IOException Generates the barcode and returns the Base64 encode of the resulting image- Parameters:
format
- The barcode format (CODE_128, QR_CODE ...)code
- The content of the barcodewidth
- width of the resulting imageheight
- height of the resulting imagelabel
- If the code should also printed as plain text- Returns:
- The barcode image base64 encoded
- Throws:
IOException
- In case of error during the rendering
-
writeQREncoded
Generates the QR code and returns the Base64 encode of the resulting image- Parameters:
code
- The content of the barcodesize
- dimension of the resulting square image- Returns:
- The barcode image base64 encoded
- Throws:
IOException
- In case of error during the rendering
-