开发者

Very odd UIImagePickerController behavior (Pic attached)

开发者 https://www.devze.com 2023-02-11 09:01 出处:网络
I\'ve been totally unable to get the bottom of this. I am capturing a camera image. My preview image looks like the image below?

I've been totally unable to get the bottom of this. I am capturing a camera image. My preview image looks like the image below?

The resulting captured image is actually just fine. It's just that the preview appears like the image below?

That's my image there in the middle..... all TINY... ?

Screenshot of issue:

Very odd UIImagePickerController behavior (Pic attached)

Anyone have any idea?

The code I am using:

//Open the Camera view
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.sour开发者_StackOverflowceType = UIImagePickerControllerSourceTypeCamera;
picker.allowsEditing = YES;
picker.delegate = self;
picker.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:picker animated:YES];
[picker release];

Thanks for any help.

0

精彩评论

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