GroupDocs.Metadata for .NET 23.12.1 Release Notes

Major Features

There are the following features, enhancements, and fixes in this release:

  • Add export metadata to JSON file
  • Assign GPS property to location tag

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
METADATANET-4031Export to JSON format.Feature
METADATANET-4032Assign GPS property to location tag.Feature

Public API and Backward Incompatible Changes

Public API changes

The JsonExportOptions class has been added to the groupdocs.metadata.export namespace

Use cases

Export Pdf metadata in Json

using (Metadata metadata = new Metadata("input.pdf"))
{
	using (MemoryStream stream = new MemoryStream())
	{
		ExportManager manager = new ExportManager(metadata.GetRootPackage());
		manager.Export(stream, ExportFormat.Json, new JsonExportOptions());
	}
}