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 = 0Swift
case unknown = 0 -
The image is landscape.
Declaration
Objective-C
CBLExifRotationLandscape = 1Swift
case landscape = 1 -
The image is rotated 180°.
Declaration
Objective-C
CBLExifRotationLandscapeUpsideDown = 3Swift
case landscapeUpsideDown = 3 -
The image is “portrait right” (i.e., the camera was rotated clockwise).
Declaration
Objective-C
CBLExifRotationPortraitRight = 6Swift
case portraitRight = 6 -
The image is “portrait right” (i.e., the camera was rotated anticlockwise).
Declaration
Objective-C
CBLExifRotationPortraitLeft = 8Swift
case portraitLeft = 8