Spire.Barcode for Java 5.1.11 supports obtaining barcode information
2024-06-12 08:38:25
We are happy to announce the release of Spire.Barcode for Java 5.1.11. In this version, the BarcodeScanner class adds several methods for obtaining barcode information, scanning Aztec type, and scanning with more overload settings. Moreover, this release also includes some internal interface adjustments. Details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREBARCODE-258 The BarcodeScanner class supports obtaining barcode information, including barcode type, data value and vertex position information. BarcodeInfo[] infos = BarcodeScanner.scanInfo("barcode.png"); Point[] loaction = infos[0].getVertexes(); BarCodeReadType barCodeReadType = infos[0].getReadType(); String dataString = infos[0].getDataString(); New feature - The BarcodeScanner…
Spire.Barcode for Java 5.1.3 supports adding pictures to the center of QR code
2024-01-19 09:49:58
We are happy to announce the release of Spire.Barcode for Java 5.1.3. This version supports adding pictures to the center of QR code. It also fixes the issue that barcode recognition failed in vertical orientation. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - The method for applying a license has been changed to com.spire.barcode.license.LicenseProvider.setLicenseKey(key). New feature SPIREBARCODE-244 Supports adding pictures to the center of QR code. BarcodeSettings barCodeSetting = new BarcodeSettings(); BufferedImage image = ImageIO.read(new File("Image/1.png")); barCodeSetting.setQRCodeLogoImage(image); Bug SPIREBARCODE-243 Fixes the issue that barcode recognition failed in…