I think I found a bug in latest iOS 7 by running an app with Base SDK set to iOS 6.1 (possibly even lower versions too, haven\'t tested that out yet)
I have this ima
I believe we ended up working around similar issues by never asking for the edited image directly; ask for the original image and the crop information (UIImagePickerControllerCropRect
) and do the cropping yourself. Note that you need to worry about rotations in the source image if you do the cropping yourself.
You might find the answer in this question helpful for implementing this work-around.