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.6

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 156.36MB
  • Date Added:
  • 23/6/2024

Description

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

File Details

This release of Aspose.BarCode for C++ (version 24.6) equips developers with enhanced barcode encoding capabilities and introduces support for modern SVG color schemes on Windows, Linux, and macOS.

Streamlined Code39 and Code93 Encoding

The latest changes in the C++ barcode API simplify working with Code39 and Code93 barcodes. Code39 now supports full ASCII characters, and Code93 offers a unified API for both extended and standard variants for your cross-platform barcode processing applications.

SVG Color Control Boost

Build apps with the ability to generate SVG barcodes using a wider range of color options. Utilize SVG 2.0 color schemes like RGB, RGBA, HSL, and HSLA for greater design flexibility. Please check out the following code example, which illustrates how to use the HSLA color fill mode for your barcodes and save them in SVG format in C++. The second coding example highlights the conversion from HSLA to RGBA while 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);

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.6 Release Notes.

 English