So I am saving two photos using this function
let leftMirroredImage = UIImage(cgImage: myImage.cgImage!, scale: myImage.scale, orientation: UIImageOrientation.leftMirrored)
UIImageWriteToSavedPhotosAlbum(myImage, nil, nil, nil)
UIImageWriteToSavedPhotosAlbum(leftMirroredImage, nil, nil, nil) .
but for some reason, the leftMirroredImage
is getting cut off when I view it in the Photos app. like so .
here is the normal image that was saved
I also noticed that the photo will get cut off like that with .upMirrored , .downMirrored, and .rightMirrored
. Any idea why this is happening?
You can use CIFilter "CIAffineTransform" and multiply your image x scale by -1 to flip your image horizontally: