List of usage examples for com.itextpdf.text.pdf BarcodePostnet setCode
public void setCode(String code)
From source file:org.unesco.jisis.printsort.BarCodeGenerator.java
/**creating a barcode image using BarcodePostnet for myText*/ public Image createBarcodePostnet(String myText) { BarcodePostnet myBarcodePostnet = new BarcodePostnet(); myBarcodePostnet.setCode(myText); Image myBarcodeImagePostnet = myBarcodePostnet.createImageWithBarcode(contentByte, null, null); return myBarcodeImagePostnet; }
From source file:org.unesco.jisis.printsort.BarCodeGenerator.java
/** creating a barcode image using BarCodeInter25 */ public Image createBarcodePostnetPlanet(String myText) { BarcodePostnet myBarCodePostnetPlanet = new BarcodePostnet(); myBarCodePostnetPlanet.setCode(myText); myBarCodePostnetPlanet.setCodeType(Barcode.PLANET); Image myBarCodeImagePostntPlanet = myBarCodePostnetPlanet.createImageWithBarcode(contentByte, null, null); return myBarCodeImagePostntPlanet; }