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.
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.
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.
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*
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);
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.