GroupDocs.Metadata for .NET 23.1 Release Notes

Major Features

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

  • Add support for .dng RAW format

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
METADATANET-3989Support DNG format.New Feature

Public API and Backward Incompatible Changes

Implement the ability to configure cache for heavy operations

This improvement allows you to extract metadata from the .dng format

Public API changes

The DngRootPackage class has been added to the GroupDocs.Metadata.Formats.Image namespace

The Dng item has been added to the FileFormat enum

Use cases

Read XMP metadata properties from a HEIC image

using (Metadata metadata = new Metadata(@"D:\sample.dng"))
{
	var root = metadata.GetRootPackage<DngRootPackage>();

	Console.WriteLine(root.DngPackage.Artist);
	Console.WriteLine(root.DngPackage.Description);
}