GroupDocs.Metadata for .NET 23.11 Release Notes

Major Features

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

  • Add export metadata to csv file
  • Add many properties for .mov
  • Manage image orientation on Exif

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
METADATANET-4021Develop export to xml.Feature
METADATANET-4027Add more properties for .mov format.Feature
METADATANET-3931Manage image orientation.Feature

Public API and Backward Incompatible Changes

Public API changes

The CsvExportOptions class has been added to the groupdocs.metadata.export namespace Many new properties in MovPackage The Orientation in ExifPackage

Use cases

Export Pdf metadata in csv

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