0

When I use image picker to take photos using iPad camera , the photos are automatically getting resized/cropped while storing it.The same code is working fine with iPhone.Can anyone please help me to find out a solution for this. I am getting this in iOS 9.x.I need original images to be displayed.

Thank you very much in advance.

iOSManiac
  • 139
  • 1
  • 11

1 Answers1

0

My issue got resolved when I changed

UIImage * image = info[UIImagePickerControllerEditedImage];

to

UIImage * image = info[UIImagePickerControllerOriginalImage];

in didFinishPickingMediaWithInfo method.

Matz
  • 1,006
  • 10
  • 27
iOSManiac
  • 139
  • 1
  • 11