问题
i have created custom camera overlay view from this blog AROVerlayViewController it's all working properly but i have one problem after capturing image the image is going to be streched while showing in ImageView


回答1:
So it is the camera with which you are taking a picture right (even if its a camera with custom overlay views). Then to get the high res image, you will need to get the actual image (not edited) when your app hits the UIImagePickerControllerDelegate method.
Specifically in this method
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
The dictionary info has a value with key UIImagePickerControllerOriginalImage which is what you are looking for.
回答2:
i have solved my problem by this example it's very useful. https://github.com/Nyx0uf/NYXImagesKit
来源:https://stackoverflow.com/questions/11717962/how-to-cropresize-capture-image-from-iphone-and-selecting-from-photo-album