开发者

Getting cropped Image from camera in iphone

开发者 https://www.devze.com 2023-01-18 05:38 出处:网络
I am working on a app where i need to get a image from camera but before that i want to allow cropping of the image. I am using UIImagePickerControllerCropRect in UiImagePicker to get the cropped rect

I am working on a app where i need to get a image from camera but before that i want to allow cropping of the image. I am using UIImagePickerControllerCropRect in UiImagePicker to get the cropped rectangle. I am able to get the original image from the picker but i am not able to crop it using开发者_如何学Go UIImagePickerControllerCropRect. Can someone help me?

Thanks


this support question is similar http://discussions.apple.com/thread.jspa?threadID=1808549


Try using Below code

Use Below mentioned Delegate Method to get Image



- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo {

//you will get image here which is already cropped... 
// This will work iOS 3.2 or later

}

Hope this will work for you. Though I haven't tried full code yet But it is giving me scaled Size

0

精彩评论

暂无评论...
验证码 换一张
取 消