Hello,
i am using AsposeBarcode For Java (Version 7.4.0).
Sometimes the generated barcodeimage ist not readable.
For example the value 15-11-48-02-1386 will produce an wrong barcode.
Hint: The checksum is not right.

Code:
// The path to the documents directory.
String dir = System.getProperty(“java.io.tmpdir”);
// Instantiate barcode object
BarCodeBuilder bb = new BarCodeBuilder();
// Set the Code text for the barcode
bb.setCodeText(“15-11-48-02-1386”); // fail
// bb.setCodeText(“15/11/48/02/1386”); // ok
bb.setSymbologyType(Symbology.Code93Standard);
bb.save(dir + “barcode.png”, BarCodeImageFormat.Png);
regards
Wolfgang Post