HeifOrientation Enumeration
Specifies how the decoder should transform the image before it is displayed.
Namespace: LibHeifSharpAssembly: LibHeifSharp (in LibHeifSharp.dll) Version: 3.2.0
public enum HeifOrientation
Public Enumeration HeifOrientation
public enum class HeifOrientation
These values match the EXIF Orientation tag.
Normal | 1 |
The image will not be rotated or flipped.
|
FlipHorizontally | 2 |
The image will be flipped horizontally.
|
Rotate180 | 3 |
The image will be rotated 180 degrees.
|
FlipVertically | 4 |
The image will be flipped vertically
|
Rotate90ClockwiseThenFlipHorizontally | 5 |
The image will be rotated 90 degrees clockwise followed by a horizontal flip.
|
Rotate90Clockwise | 6 |
The image will be rotated 90 degrees clockwise.
|
Rotate90ClockwiseThenFlipVertically | 7 |
The image will be rotated 90 degrees clockwise followed by a vertical flip.
|
Rotate270Clockwise | 8 |
The image will be rotated 270 degrees clockwise.
|