Quote:
Originally Posted by Avocado
Thanks, I'll give that a try. I'm still not sure how I'll gain access to the image that was captured by the camera... do you know how I could do that?
|
Basically what you want to do is this:
- (void)changeImage {
// call the takePicture method, after it takes the picture, it should automatically call the method below
[imgPicker takePicture];
}
- (void)imagePickerController

UIImagePickerControll er *)picker didFinishPickingMediaWithInfo

NSDictionary *)info{
// the captured image should be in the variable img, and then you can go and manipulate it as you see fit
UIImage * img = [info objectForKey:UIImagePickerControllerOriginalImage];
}