CBLExifRotation
Objective-C
enum CBLExifRotation : NSInteger {}
Swift
enum ExifRotation : Int, @unchecked Sendable
EXIF rotation constants.
-
The image has an unknown rotation.
Declaration
Objective-C
CBLExifRotationUnknown = 0
Swift
case unknown = 0
-
The image is landscape.
Declaration
Objective-C
CBLExifRotationLandscape = 1
Swift
case landscape = 1
-
The image is rotated 180°.
Declaration
Objective-C
CBLExifRotationLandscapeUpsideDown = 3
Swift
case landscapeUpsideDown = 3
-
The image is “portrait right” (i.e., the camera was rotated clockwise).
Declaration
Objective-C
CBLExifRotationPortraitRight = 6
Swift
case portraitRight = 6
-
The image is “portrait right” (i.e., the camera was rotated anticlockwise).
Declaration
Objective-C
CBLExifRotationPortraitLeft = 8
Swift
case portraitLeft = 8