views:

150

answers:

1

hi,

I am developing image size based iphone application. selecting two photos of size 1600*1200 from photo library and merging of both to single image and save to same library. Again if i check the image size it shows 600* 800. How to get original size(1600*1200) of created New photo(600*800).

Thanks in advance.

A: 

Check the UIImagePickerControllerDelegate Protocol Reference. The info NSDictionary of the imagePickerController:didFinishPickingMediaWithInfo: method contains the original image.

Irene