Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Aspose.BarCode for Python via Java 24.2 supports generating and recognizing rMQR (Micro QR) barcodes within your Python barcode processing solutions and expands their barcode symbology capabilities. The following Python code example showcases the recognition and generation of the rMQR barcodes.
def example1(self): codetext = "Aspose" generator = Generation.BarcodeGenerator(Generation.EncodeTypes.RECT_MICRO_QR, codetext) generator.getParameters().getBarcode().getCodeTextParameters().setLocation(Generation.CodeLocation.BELOW) generator.getParameters().getBarcode().getQR().setRectMicroQrVersion(Generation.RectMicroQRVersion.R11x77) image = generator.generateBarCodeImage() reader = Recognition.BarCodeReader(image, None, Recognition.DecodeType.RECT_MICRO_QR) barCodeResults = reader.readBarCodes() barCodeResult = barCodeResults[0] print('CodeText:' + barCodeResult.getCodeText()) print('CodeType: ' + barCodeResult.getCodeTypeName())
Source*
The new QualitySettings API provides more control over barcode recognition for various scenarios, including low-quality barcodes and complex backgrounds.
QualitySettings
We have resolved issues related to DotCode barcode detection, license engine handling non-ASCII characters, and barcode label rendering for specific types in this Python barcode API release so that you can enjoy a great usage experience regardless of your OS or platform.
DotCode
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.BarCode for Python via Java 24.2 Release Notes.