IExifExifPackage Property |
Gets or sets the EXIF metadata package associated with the file.
Namespace: GroupDocs.Metadata.Standards.ExifAssembly: GroupDocs.Metadata (in GroupDocs.Metadata.dll) Version: 21.8
SyntaxExifPackage ExifPackage { get; set; }
Property ExifPackage As ExifPackage
Get
Set
property ExifPackage^ ExifPackage {
ExifPackage^ get ();
void set (ExifPackage^ value);
}
abstract ExifPackage : ExifPackage with get, set
Property Value
Type:
ExifPackage
The EXIF metadata package associated with the file.
Remarks
Examples
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);
}
}
See Also