I try this -
UIImage *flippedImage = [UIImage imageWithCGImage:clickedImage.CGImage
scale:clickedImage.scale orientation:UIImageOrientationUpMirrored]; //give the mirror uiimage object
This method give me mirror image but when i save these image in an array the original(not mirror) image is saved.
even when i debug it, it shows the original image. But shows mirror if displayed.
I don't know what is the reason but, i think this method actually does not convert image in mirror form.
How do i get horizontally flipped/mirror image?