How can i merge the captured photo from UIImagePickerController and cameraoverlay view? Then i want to save it to the photos album.
Need help on this.
How can i merge the captured photo from UIImagePickerController and cameraoverlay view? Then i want to save it to the photos album.
Need help on this.
i think this may help to work with camera overlay view and saving overlay clicked image in to library http://red-glasses.com/index.php/tutorials/ios4-take-photos-with-live-video-preview-using-avfoundation/
Sorry i didn't get your question earlier.. One way to do is that to capture the screenshot programmatically and then edit the image according to your requirements and save it.
This should help... How to take a screenshot programmatically
I would create an image context, then write both images into it. Then use UIImageWriteToSavedPhotosAlbum to save to album. Here is an example where I put a logo on the saved image when called from a button. In your case the brand image will be your overlay and the imageToSave will be the image from the UIImagePickerController. Modify to suit. Hopefully it will help: