Skip to main content

ImageOrientation

An image's EXIF orientation.

1
enum ImageOrientation {
2
EXIF_0_UNKNOWN
3
EXIF_1_TOP_LEFT
4
EXIF_2_TOP_RIGHT
5
EXIF_3_BOTTOM_RIGHT
6
EXIF_4_BOTTOM_LEFT
7
EXIF_5_LEFT_TOP
8
EXIF_6_RIGHT_TOP
9
EXIF_7_RIGHT_BOTTOM
10
EXIF_8_LEFT_BOTTOM
11
}

Values

ImageOrientation.EXIF_0_UNKNOWN

Unknown

ImageOrientation.EXIF_1_TOP_LEFT

Normal

ImageOrientation.EXIF_2_TOP_RIGHT

Mirror horizontally

ImageOrientation.EXIF_3_BOTTOM_RIGHT

Rotate 180°

ImageOrientation.EXIF_4_BOTTOM_LEFT

Mirror vertically

ImageOrientation.EXIF_5_LEFT_TOP

Mirror horizontally, rotate 270° clockwise

ImageOrientation.EXIF_6_RIGHT_TOP

Rotate 90° clockwise

ImageOrientation.EXIF_7_RIGHT_BOTTOM

Mirror horizontally, rotate 90° clockwise

ImageOrientation.EXIF_8_LEFT_BOTTOM

Rotate 270° clockwise

Member Of