Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have UIActionSheet with 3 options -

  1. Take a photo (from camera)
  2. Choose from library
  3. Edit photo (if user has profile picture )

I use UIImagePickerController and don't have problems with first 2 options. User choose photo and then can zoom/move to crop one.

So, my question is - how I can put already saved photo for editing (3rd option) with current scale factor and frame. F.e if I choose "edit photo" I want to get the same photo "state" that I've choosen after preview.

That is how native "contacts" app works!

photo's preview

share|improve this question

1 Answer

up vote 0 down vote accepted

You need to access the UIImagePickerControllerEditedImage object in your delegate method:

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
    UIImage *image = [info objectForKey:UIImagePickerControllerEditedImage];
    if (!image) image = [info objectForKey:UIImagePickerControllerOriginalImage];
    ....
}

Then you can use this image in your own edit view controller. The Contacts app works this way because it writes the edited image back to the ALAsset, a destructive change. It is probably a bad idea to do this for users in your app, so it is best to write your own edit image controller that will handle the edited image instead of UIImagePickerController. A search on github shows tons of open-source repos that can help you with cropping here.

share|improve this answer
I supposed it could be some native staff like pickerController.originalImage = originalImage; and pickierController.croppedImage = croppedImage; to run edit mode. – Inject IOS Jul 6 '12 at 14:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.