InApp Photo Editor ?

600 Views Asked by At

Is there a easy way to edit a photo taken via the camera in my application? I just want the user to take a photo in app→crop→save. I just want the user to do this very simple task but I can't do it. Is there an easy way to do this? I want it to be like the cinemagram that dosen't have the effects but instead cropping.

2

There are 2 best solutions below

1
On

Set your imagePicker.allowsEditing to Yes

self.imagePicker.allowsEditing = YES;

Then set up your delegate method..

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

if you want to save it to your Camera Roll add this after UIImage *image....:

UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);
1
On

Yes, use the allowsEditing property of UIImagePickerController and the user will get a chance to crop the photo after they take it. It's an easy class to use. Refer to the Camera Programming Topics for code samples and info.