Browse our Products

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.

 

Aspose.BarCode for Python via Java 24.2

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 15.23MB
  • Date Added:
  • 29/2/2024

Description

Aspose.BarCode for Python via Java 24.2 has been released.

File Details

Support for rMQR Barcodes

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*

Enhanced Barcode Recognition Quality

The new QualitySettings API provides more control over barcode recognition for various scenarios, including low-quality barcodes and complex backgrounds.

Improvements and Bug Fixes

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.

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.

 English