Barcodes 128 (2)
import java.io.FileOutputStream; import com.lowagie.text.Chunk; import com.lowagie.text.Document; import com.lowagie.text.Image; import com.lowagie.text.PageSize; import com.lowagie.text.Phrase; import com.lowagie.text.pdf.Barcode128; import com.lowagie.text.pdf.Barcode39; import com.lowagie.text.pdf.PdfContentByte; import com.lowagie.text.pdf.PdfWriter; public class Barcodes128 { public static void main(String[] args) { Document document = new Document(PageSize.A4, 50, 50, 50, 50); try { PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("Barcodes128.pdf")); document.open(); PdfContentByte cb = writer.getDirectContent(); Barcode128 code128 = new Barcode128(); code128.setCode("www.java2s.com"); Image image128 = code128.createImageWithBarcode(cb, null, null); document.add(new Phrase(new Chunk(image128, 0, 0))); } catch (Exception de) { de.printStackTrace(); } document.close(); } }
1. | Example BarcodePDF417 | ![]() | |
2. | Barcode 128 | ![]() | |
3. | Barcodes 39 | ![]() | |
4. | Barcodes 39 Ext | ![]() | |
5. | BarcodesEAN 13 | ![]() | |
6. | BarcodesEAN SUPP | ![]() | |
7. | BarcodesInter25 | ![]() | |
8. | BarcodePostnet | ![]() | |
9. | BarcodesPostnet 2 | ![]() | |
10. | BarcodeEAN: SUPP5 | ![]() |