标签: ios uiimage orientation uiimageorientation
照片,使用iOS设备以纵向倒置模式拍摄,然后复制到Xcode项目。
let testImage = UIImage(named: "4.JPG") print(testImage!.imageOrientation.rawValue)
UIImageOrientation值总是得到0(.up orientation),尽管它应该是.left。
我用EXIF观众重新检查图像 - 它应该是.left。任何想法为什么会发生这种情况?
Related question