GroupDocs.Metadata for .NET 17.10.2 Release Notes

Major Features

There is one bug fix in this hotfix monthly release. 

  • TIF - Bit Depth is affected when removing metadata

All Changes

KeySummaryCategory
METADATANET-1931TIF - Bit Depth is affected when removing metadataBug

Public API and Backward Incompatible Changes

TIF - Bit Depth will be affected when removing metadata

The bug related to Bit Depth while removing metadata has been resolved.

Public API changes

None

This example demonstrates how to remove metadata without affecting Bit Depth.

// open TIFF            
TiffFormat format = new TiffFormat(sourcePath);

// remove XMP metadata
format.RemoveXmpData();

// and save file to another
format.Save(destinationPath);