views:

157

answers:

2

I'm using UIImagePickerController with the camera as the sourceType. I am also drawing a custom overlay on the picker using the built-in overlay functionality(picker.overlay = myOverlay).

How can I get an UIImage of the camera, excluding my overlay?. I tried using UIGetScreenImage() but that captures my overlay as well.

+2  A: 
[picker takePicture];
Ole Begemann
Oups :) thanks a lot
Racker
+1  A: 

How can we take the picture including the overlay from the camera.

Ashraf