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.
We are pleased to announce the Aspose.BarCode for C++ 24.6 release for Linux developers. This release incorporates improved Code39 and Code93 encoding and advanced SVG color control for your C++ barcode processing applications on Linux.
This release of the C++ barcode API simplifies handling Code39 and Code93 barcodes. In the latest version, Code39 supports full ASCII characters, and Code93 provides a consolidated API for extended and standard variants for your Linux-powered barcode solutions.
Upgrade your C++ applications with the ability to generate SVG barcodes using a broader color range. Leverage SVG 2.0 color schemes, such as RGB, RGBA, HSL, and HSLA for refined design flexibility. Please check out the following code examples: The first example demonstrates how to use the HSLA color fill mode for your barcodes and export them to SVG format in C++. The second example showcases the conversion from HSLA to RGBA when generating and saving barcodes in SVG format.
System::String codeText = u"ABCDEFGHIJKLMNOPQRSTUVWXYZ"; auto gen = System::MakeObject<Aspose::BarCode::Generation::BarcodeGenerator>(EncodeTypes::Code128, codeText); gen->get_Parameters()->get_Barcode()->set_BarColor(System::Drawing::Color::FromArgb((int32_t)0xBBFF5511)); gen->get_Parameters()->get_Image()->get_Svg()->set_SvgColorMode(Aspose::BarCode::Generation::SvgColorMode::HSLA);
Source*
System::String codeText = u"ABCDEFGHIJKLMNOPQRSTUVWXYZ"; auto gen = System::MakeObject<Aspose::BarCode::Generation::BarcodeGenerator>(EncodeTypes::Code128, codeText); auto hslaColor = System::MakeObject<HslaColor>(30, 50, 70, 0.8f); System::Drawing::Color color = HslaColor::ConvertHslaToRgba(hslaColor); gen->get_Parameters()->get_Barcode()->set_BarColor(color); gen->get_Parameters()->get_Image()->get_Svg()->set_SvgColorMode(Aspose::BarCode::Generation::SvgColorMode::HSLA);
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.BarCode for C++ 24.6 Release Notes.