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

Download  Support Forum 

File Details

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

Description

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

File Details

Aspose.BarCode for C++ v24.7 offers robust barcode generation and recognition capabilities across platforms. This release includes enhancements to QR code recognition accuracy and adds support for finer control over Australia Post barcode generation.

Compare Barcode Images in C++

The latest C++ barcode API release brings an enhanced image comparison functionality for you to seamlessly cross-reference generated barcode images for elevated analysis and verification.

Boost To QR Code Recognition Accuracy

Benefit from refined QR code recognition algorithms within your cross-platform barcode processing applications for better read rates and reduced errors. Check out the following code snippet to learn about 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*

Upgraded Australia Post Barcode Generation

Aspose.BarCode for C++ now delegates better control over Australia Post barcode dimensions and formatting options to meet specific requirements. This code example highlights how to use this feature in C++.


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