set barcode 128 to type B in java
问题 I am using this code to generate barcode128 : String stb1 = "123456789"; code128.setCode(stb1); //code128.setCodeType(Barcode128.CODE128_UCC); //code128.setCode("1234567890"); code128.setStartStopText(true); Image image128 = code128.createImageWithBarcode(cbd, null, Color.white); image128.setAbsolutePosition(20 + x, 626 + y); image128.scaleAbsolute(109, 33); document.add(image128); My client want the barcode 128 type B. How to set it to type B? I tried CODE128_UCC , CODE128_RAW , CODE128 in