PdfXmpMetadata.RegisterNamespaceURI

PdfXmpMetadata.RegisterNamespaceURI method

Registers the namespace URI.

public void RegisterNamespaceURI(string prefix, string namespaceURI)
ParameterTypeDescription
prefixStringThe prefix.
namespaceURIStringThe namespace URI.

Examples

PdfXmpMetadata xmp = new PdfXmpMetadata("input.pdf");
xmp.RegisterNamespaceURI("xmp", "http://ns.adobe.com/xap/1.0/");

See Also