Hi
SVG does not work in C++ lib.
try
{
// Save the Barcode image in SVG format
generator->Save(dataDir + u"Code128-barcode_out.svg", BarCodeImageFormat::Svg);
}
catch (const std::exception& e)
{
logEvent(EID_ERROR, L"CreateAndManageTwoDBarcodes error: %1. The %2 barcode type.", L"Code128", StringHelp::latin1ToUcs2(e.what()));
}
Throws exception;
CreateAndManageTwoDBarcodes error: System::ArgumentException: ns.
I can generate ALL other formats (except EMF which is missing, and really the format I need).
Here is the half SVG saved;
Code128-barcode_out.zip (333 Bytes)
/Jacob