I'm trying to find out what are the coordinates of a photo chosen from the photo library via "UIImagePickerController".
I present the imagePickerController:
[self presentModalViewController:imagePickerController animated:YES];
and then:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo
{
selectedImage.image = image;
[[picker parentViewController] dismissModalViewControllerAnimated:YES];
}
I looked in the documentation about the "editingInfo" dictionary but I think is not the right way. Help me please! Thank all very much!
Oscar