List of usage examples for com.itextpdf.text.pdf BarcodeInter25 setGenerateChecksum
public void setGenerateChecksum(boolean generateChecksum)
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);/*from www .j av a2 s .com*/ Image myBarCodeImageInter25 = myBarcode25.createImageWithBarcode(contentByte, null, null); return myBarCodeImageInter25; }