This documentation is for the old version. Go to the latest Graphics Mill docs

LosslessJpegTransform.Exif Property

Gets/sets EXIF data collection for the opened JPEG file.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Property Exif As ExifDictionary
C#
public ExifDictionary Exif { get; set; }

Property Value

ExifDictionary class instance that contains EXIF data collection.

Remarks

To edit EXIF you can either edit its fields in-place or assign new EXIF collection to this property.

You assign null to this property. In this case no EXIF data will be saved with WriteXXX methods.

Note

When EXIF data is moved to the file (when you use one of WriteXXX methods), Graphics Mill for .NET updates only width and height fields. It does not update thumbnail or any other fields. So your application is responsible to do it if it is necessary.

See Also

Reference