ExifPackage
Leave feedback
On this page
Gets or sets the EXIF metadata package associated with the file.
public ExifPackage ExifPackage { get; set; }
The EXIF metadata package associated with the file.
Learn more
This code sample shows how to remove EXIF metadata from a file.
using (Metadata metadata = new Metadata(Constants.JpegWithExif))
{
IExif root = metadata.GetRootPackage() as IExif;
if (root != null)
{
root.ExifPackage = null;
metadata.Save(Constants.OutputJpeg);
}
}
- class ExifPackage
- interface IExif
- namespace GroupDocs.Metadata.Standards.Exif
- assembly GroupDocs.Metadata
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.