开发者

cameraOverlayView problem on iOS 4.3

I'm using an picker Controller with a cameraOverlayView to display an image of a product in the camera view. The product image is resized before applying on the overlay. It works fine on iOS 4.2 but on iOS 4.3 the product image is displayed full size.

pickerController.sourceType = UIImagePickerControllerSourceTypeCamera;
UIImageView *imgView =  [[[UIImageView alloc] initWithImage:[UIImage imageNamed:produitAffiche.img_realite]] autorelease];

// Resize
if(imgView.frame.size.height == 480)
{
    //Portrait
    imgView.frame = CGRectMake(80.0f, 120.0f, 160.0f, 240.0f);
}
else
{
    // Landscape
    imgView.frame = CGRectMake(40.0f, 160.0f, 240.0f, 160.0f);
}

imgView.contentMode = UIViewContentModeCenter;
imgView.clipsToBounds = NO;
imgView.contentMode = UIViewContentModeScaleAspectFit;  

pickerController.cameraOverlayView = (UIView *) imgView;

I changed the frame of the UIImageView I use as overlay but it's still displayed at 320*480. I know that the cameraOverlayView have been开发者_JS百科 modified in iOS 4.3 but I don't know what has changed and what I have to do to correct my application.

Thanks for your help.


In iOS 4.3 the overlay view is stretched to full screen. Because you set the content mode to aspect fit, the image is stretched to fit the new view size which is 320x480.

You need to make a transparent UIView that is fullscreen, add the imageview to that view and make the UIView the new overlay view.

UIView *fullscreenView = [[UIView alloc] initWithFrame:CGRectZero];
fullscreenView.backgroundColor = [UIColor clearColor];
....
 [fullscreenView addSubview:imgView];
pickerController.cameraOverlayView = fullscreenView;


Found this article that seems to fit the bill. The long and short of it is to use

- (UIImage *)
  resizedImageWithContentMode:(UIViewContentMode)contentMode
                       bounds:(CGSize)bounds
         interpolationQuality:(CGInterpolationQuality)quality;


Comment out this line in your code

imgView.clipsToBounds = NO;

It should work. If you really want to clip, @slf 's answer should help.


try setting these properties of UIImagePicker:

mImagePickerController.showsCameraControls = NO;

mImagePickerController.navigationBarHidden = YES;

mImagePickerController.toolbarHidden = YES;

mImagePickerController.wantsFullScreenLayout = YES;


My problem was actually that a UIImagePicker displayed full-screen on iOS5 did not work on iOS4.3, on an iPad. I was starting the image picker up offscreen, then animating it into view... You would see the shutter image open up, but then the camera view itself was simply transparent with no camera output.

My solution was to not animate that in for iOS4.3 on the iPad. It seems that having the camera view started offscreen was leaving the camera rendering part behind (fixed as I noted in iOS5).

This answer is not quite right for the original question but I place it here for someone that comes into the same issue and hits this question as I did.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜