[]
Gets or sets a value indicating whether the orientation specified in the image's EXIF metadata should be applied.
public ApplyExifOrientation ApplyExifOrientation { get; set; }
| Type | Description |
|---|---|
| ApplyExifOrientation | A ApplyExifOrientation value indicating whether the orientation specified in the image's EXIF metadata should be applied. |
If ApplyExifOrientation is set to Auto, Indicates that the EXIF orientation metadata should be applied based on the default behavior (equivalent to True).
If ApplyExifOrientation is set to True, Indicates that the EXIF orientation metadata should be applied.
If ApplyExifOrientation is set to False, Indicates that the EXIF orientation metadata should not be applied.
Image image = new Image();
image.ApplyExifOrientation = ApplyExifOrientation.Auto;