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 MacOS

Download  Support Forum 

File Details

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

Description

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

File Details

MacOS developers can take their C++ barcode processing applications to the next level with Aspose.BarCode for C++ 24.6 release. This version brings refined Code39 and Code93 encoding and augmented SVG color control for your apps running on Apple Macs.

Supercharged Code39 and Code93 Encoding on macOS

The C++ barcode API now supports optimized handling of Code39 and Code93 barcodes. With this API version, Code39 supports full ASCII characters, and Code93 utilizes a centralized API for extended and standard variants for your Mac-powered barcode solutions.

Easily Manage SVG Colors

Equip your C++ apps on macOS with the capability to generate SVG barcodes with a broader set of color range options. Employ SVG 2.0 color schemes, such as RGB, RGBA, HSL, and HSLA, for elevated design flexibility. Please check out the following C++ coding samples: The first sample shows how to utilize the HSLA color fill mode for your SVG barcodes. The second sample highlights the conversion from HSLA to RGBA while generating and saving barcodes as SVGs.


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