List of usage examples for com.itextpdf.text.pdf BarcodeInter25 createImageWithBarcode
public Image createImageWithBarcode(PdfContentByte cb, BaseColor barColor, BaseColor textColor)
Image with the barcode. From source file:org.unesco.jisis.printsort.BarCodeGenerator.java
/** creating a barcode image using BarCodeInter25 for myText*/ public Image createBarcodeInter25(String myText) { BarcodeInter25 myBarcode25 = new BarcodeInter25(); myBarcode25.setGenerateChecksum(true); myBarcode25.setCode(myText);// w ww.j a v a2 s. com Image myBarCodeImageInter25 = myBarcode25.createImageWithBarcode(contentByte, null, null); return myBarCodeImageInter25; }