1
所以我節省了使用此功能保存照片的問題與.leftMirrored方向
let leftMirroredImage = UIImage(cgImage: myImage.cgImage!, scale: myImage.scale, orientation: UIImageOrientation.leftMirrored)
UIImageWriteToSavedPhotosAlbum(myImage, nil, nil, nil)
UIImageWriteToSavedPhotosAlbum(leftMirroredImage, nil, nil, nil) .
但由於某些原因,leftMirroredImage
是被截斷當我在照片應用程序查看兩張照片。像這樣。
這裏是保存
我也注意到,照片將得到切斷一樣,與.upMirrored , .downMirrored, and .rightMirrored
正常圖像。任何想法爲什麼發生這種情況?