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 C++ 24.7 Linux

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 45.92MB
  • Date Added:
  • 18/7/2024

Description

It contains Aspose.BarCode for C++ 24.7 Linux release.

File Details

Empower your Linux applications with Aspose.BarCode for C++ 24.7 release and seamlessly recognize and decode barcodes within your applications. This release incorporates advancements in QR code recognition and provides greater flexibility for Australia Post barcode customization.

Add Reference Image Comparison in Your Apps

This version of the C++ barcode API offers an improved image comparison feature that allows you to analyze barcode images and verify them within your Linux solutions.

Highly Accurate QR Code Recognition

Experience superior read rates and minimal errors within your barcode processing applications by benefitting from upgraded QR code recognition algorithms in the latest release. The following coding sample demonstrates the feature usage.


System::SharedPtr<BarCodeReader> reader = System::MakeObject<BarCodeReader>(u"qr.jpg", DecodeType::QR);
reader->set_QualitySettings(QualitySettings::get_HighQuality());

for (System::SharedPtr<BarCodeResult> result : reader->ReadBarCodes())
{
    System::Console::WriteLine(result->get_CodeText());
}

Source*

Polished Australia Post Barcode Generation

The C++ barcode processing library now gives you better control over Australia Post barcode dimensions and formatting, meeting specific requirements, as showcased in this C++ code example.


System::SharedPtr<BarcodeGenerator> gen = System::MakeObject<BarcodeGenerator>(EncodeTypes::AustraliaPost, u"6212345678AP");
gen->get_Parameters()->get_Barcode()->get_AustralianPost()->set_AustralianPostEncodingTable(Aspose::BarCode::CustomerInformationInterpretingType::CTable);
gen->get_Parameters()->get_Barcode()->get_BarHeight()->set_Pixels(100.0f);
gen->get_Parameters()->get_Barcode()->get_AustralianPost()->get_AustralianPostShortBarHeight()->set_Pixels(10.0f);
gen->get_Parameters()->get_Barcode()->get_Padding()->get_Left()->set_Pixels(10.0f);
gen->get_Parameters()->get_Barcode()->get_Padding()->get_Top()->set_Pixels(10.0f);
gen->get_Parameters()->get_Barcode()->get_Padding()->get_Right()->set_Pixels(10.0f);
gen->get_Parameters()->get_Barcode()->get_Padding()->get_Bottom()->set_Pixels(10.0f);
gen->Save(u"AustraliaPost.png", Aspose::BarCode::Generation::BarCodeImageFormat::Png);

Source*

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.BarCode for C++ 24.7 Release Notes.

 English