Bug #539
Cannot add XMP properties in a custom namespace
Start date:
Due date:
% Done:
0%
Estimated time:
Description
Vladimir Nadvornik reported:
Is this supposed to work? It gives me 'No namespace info available for
XMP prefix `ns'' exception.
Exiv2::XmpData xmpData;
Exiv2::XmpProperties::registerNs("myNamespace/", "ns");
xmpData["Xmp.ns.test"] = "myvalue";
std::string xmpPacket;
if (0 != Exiv2::XmpParser::encode(xmpPacket, xmpData)) {
throw Exiv2::Error(1, "Failed to serialize XMP data");
}
std::cout << xmpPacket << "\n";