所以我正在使用这个功能保存两张照片
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
。知道为什么会这样吗?