This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var exifOrientation: Int { | |
let exifOrientation: DeviceOrientation | |
enum DeviceOrientation: Int { | |
case top0ColLeft = 1 | |
case top0ColRight = 2 | |
case bottom0ColRight = 3 | |
case bottom0ColLeft = 4 | |
case left0ColTop = 5 | |
case right0ColTop = 6 | |
case right0ColBottom = 7 |
NewerOlder