GroupDocs.Metadata for .NET 23.4 Release Notes

Major Features

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

  • Added ability to remove GPS tags in CR2 files

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
METADATANET-3999Remove GPS tags in CR2.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 .cr2 format

Public API changes

The RawIFD2Package class has been added to the GroupDocs.Metadata.Formats.Raw namespace

The RawIFD3Package class has been added to the GroupDocs.Metadata.Formats.Raw namespace

Use cases

Remove GPS tag

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

	root.Cr2Package.RawTiffTagPackage.GpsIfdPackage = null;
	root.Save(outPath);
}