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 Android via Java 24.2

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 10.11MB
  • Date Added:
  • 23/2/2024

Description

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

File Details

Expanded Barcode Support

Generate and recognize Micro QR and Rectangular Micro QR codes using Aspose.BarCode for Android via Java 24.2 and experience greater flexibility for your Android barcode applications. Check out the following code samples to learn how to generate and read RectMicroQR and MicroQR barcodes.

Read and Generate RectMicroQR Barcodes.


public void example1()
{
    String codetext = "Aspose";
    BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.RECT_MICRO_QR, codetext);
    {
        generator.getParameters().getBarcode().getCodeTextParameters().setLocation(CodeLocation.BELOW);
        generator.getParameters().getBarcode().getQR().setRectMicroQrVersion(R11x77);
        BufferedImage image = generator.generateBarCodeImage();
        BarCodeReader reader = new BarCodeReader(image, DecodeType.RECT_MICRO_QR);
        BarCodeResult[] barCodeResults = reader.readBarCodes();
        System.out.println("Codetext: " + reader.getFoundBarCodes()[0].getCodeText());
    }
}

Source*

Read and Generate MicroQR Barcodes.


public void example2()
{
    String codetext = "Aspose";
    BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_QR, codetext);
    {
        generator.getParameters().getBarcode().getQR().setMicroQRVersion(M4);
        BufferedImage image = generator.generateBarCodeImage();
        BarCodeReader reader = new BarCodeReader(image, DecodeType.MICRO_QR);
        BarCodeResult[] barCodeResults = reader.readBarCodes();
        System.out.println("Codetext: " + reader.getFoundBarCodes()[0].getCodeText());
    }
}

Source*

Flexible Quality Settings

The newest barcode recognition and generation library version allows developers to customize barcode recognition behavior with new options for X dimension, barcode quality, deconvolution, image inversion, and complex backgrounds.

Empowered Barcode Quality

Get better control over barcode generation in your solutions with new feature settings for Data Matrix and HanXin barcodes.

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.BarCode for Android via Java 24.2 Release Notes.

 English