code39ext.setExtended(true);
LwgImage image39ext = code39ext.createImageWithBarcode(cb, null, null);
Barcode128 code128 = new Barcode128();
code128.setCode("1Z234786 hello");
LwgImage image128 = code128.createImageWithBarcode(cb, null, null);
BarcodeEAN codeEAN = new BarcodeEAN();
codeEAN.setCodeType(Barcode.EAN13);
codeEAN.setCode("9780201615883");
LwgImage imageEAN = codeEAN.createImageWithBarcode(cb, null, null);
BarcodeInter25 code25 = new BarcodeInter25();
code25.setGenerateChecksum(true);
code25.setCode("41-1200076041-001");
LwgImage image25 = code25.createImageWithBarcode(cb, null, null);
BarcodePostnet codePost = new BarcodePostnet();
codePost.setCode("12345");
LwgImage imagePost = codePost.createImageWithBarcode(cb, null, null);
BarcodePostnet codePlanet = new BarcodePostnet();
codePlanet.setCode("50201402356");
codePlanet.setCodeType(Barcode.PLANET);
LwgImage imagePlanet = codePlanet.createImageWithBarcode(cb, null, null);
BarcodeEAN codeSUPP = new BarcodeEAN();
codeSUPP.setCodeType(Barcode.SUPP5);
codeSUPP.setCode("54995");
codeSUPP.setBaseline(-2);
BarcodeEANSUPP eanSupp = new BarcodeEANSUPP(codeEAN, codeSUPP);
LwgImage imageEANSUPP = eanSupp.createImageWithBarcode(cb, null, Color.blue);
LwgPdfPTable table = new LwgPdfPTable(2);
table.setWidthPercentage(100);
table.getDefaultCell().setBorder(LwgRectangle.NO_BORDER);