Browse our Products
Aspose.BarCode for Java 25.9 Release Notes
This page contains release notes information
for Aspose.BarCode for Java 25.9.
All Changes
Key | Summary | Category |
---|---|---|
BARCODENET-39007 | Optimize Han Xin recognition speed | Enhancement |
BARCODENET-39348 | Improve Pdf417 recognition performance | Enhancement |
Pdf417 recognition performance
Pdf417 barcode recognition performance has been enhanced, with better results on mobile devices and in document processing scenarios.
BarCodeReader reader = new BarCodeReader(folderPath + "Pdf417.png", DecodeType.PDF_417, DecodeType.COMPACT_PDF_417);
BarCodeResult[] results = reader.readBarCodes();
for(BarCodeResult result:results){
System.out.println(result.getCodeTypeName());
System.out.println(result.getCodeText());
}
Han Xin code recognition performance
Han Xin code ecognition performance has been refined, leading to more consistent decoding.
BarCodeReader reader = new BarCodeReader(folderPath + "HanXinCode.png", DecodeType.HAN_XIN);
BarCodeResult[] results = reader.readBarCodes();
for(BarCodeResult result:results){
System.out.println(result.getCodeTypeName());
System.out.println(result.getCodeText());
}
Public API changes and backwards compatibility
No changes in this release.