Barcode PDF 417
iText is a free and open source library for creating
PDF documents and generating Barcodes in Java.
This requires the library iText-5.0.2.jar to be in classpath.
The following example shows generating PDF 417 Barcode.
package com.bethecoder.tutorials.itext;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.PageSize;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.Rectangle;
import com.itextpdf.text.pdf.BarcodePDF417;
import com.itextpdf.text.pdf.PdfWriter;
public class PDF417Test {
/**
* @param args
* @throws DocumentException
* @throws FileNotFoundException
*/
public static void main ( String [] args ) throws FileNotFoundException, DocumentException {
Document document = new Document ( new Rectangle ( PageSize.A4 )) ;
PdfWriter writer = PdfWriter.getInstance ( document, new FileOutputStream ( "pdf417.pdf" )) ;
document.open () ;
//Barcode PDF 417
document.add ( new Paragraph ( "Barcode PDF 417" )) ;
BarcodePDF417 pdf417 = new BarcodePDF417 () ;
pdf417.setText ( "0123456789" ) ;
//Add Barcode to PDF document
document.add ( pdf417.getImage ()) ;
document.close () ;
}
}
It gives the following output,