如何在相机预览中添加叠加层(UIImageView
)
处理这个问题?
我之前尝试这样做(例如使用UIImagePickerController
并将图片添加为子视图)失败。
答案 0 :(得分:37)
本教程解释了它:http://www.musicalgeometry.com/?p=821
只需在叠加视图中添加UIImage,而不是教程中显示的红色区域。
答案 1 :(得分:10)
对于您的实施文件:
- (IBAction)TakePicture:(id)sender {
// Create image picker controller
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
// Set source to the camera
imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
// Delegate is self
imagePicker.delegate = self;
OverlayView *overlay = [[OverlayView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
// Insert the overlay:
imagePicker.cameraOverlayView = overlay;
// Allow editing of image ?
imagePicker.allowsImageEditing = YES;
[imagePicker setCameraDevice:
UIImagePickerControllerCameraDeviceFront];
[imagePicker setAllowsEditing:YES];
imagePicker.showsCameraControls=YES;
imagePicker.navigationBarHidden=YES;
imagePicker.toolbarHidden=YES;
imagePicker.wantsFullScreenLayout=YES;
self.library = [[ALAssetsLibrary alloc] init];
// Show image picker
[self presentModalViewController:imagePicker animated:YES];
}
创建一个UIView类并添加此代码
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
// Clear the background of the overlay:
self.opaque = NO;
self.backgroundColor = [UIColor clearColor];
// Load the image to show in the overlay:
UIImage *overlayGraphic = [UIImage imageNamed:@"overlaygraphic.png"];
UIImageView *overlayGraphicView = [[UIImageView alloc] initWithImage:overlayGraphic];
overlayGraphicView.frame = CGRectMake(30, 100, 260, 200);
[self addSubview:overlayGraphicView];
}
return self;
}
答案 2 :(得分:3)
您可以直接将UIImageView
添加为主窗口的子视图,而不是UIImagePicker
,它可能会更好。只需确保按正确的顺序添加它们,或致电
[window bringSubviewToFront:imageView];
相机启动后。
如果您想要处理UIImageView
上的触摸,您只需将UIImageView
添加为具有透明背景的普通全屏View
的子视图,然后添加 < / i>改为窗口,使用正常的UIViewController
子类来处理触摸事件。
答案 3 :(得分:2)
请参阅相机叠加视图(3.1及更高版本中提供)
@property(nonatomic, retain) UIView *cameraOverlayView