标题:
iOS利用AVCaptureSession实现二维码扫描(1)
[打印本页]
作者:
look_w
时间:
2019-3-4 21:02
标题:
iOS利用AVCaptureSession实现二维码扫描(1)
1 首先使APP获得相机使用权限
在plist文件中用source code的方式打开,添加如下代码:
<key>NSCameraUsageDescription</key>
<string>cameraDesciption</string>
如果没有使应用获取相机使用权限,则使用过程中会崩溃。
2 判断权限
也就是针对是否获得相机使用权限做检验:
[AVCaptureDevice requestAccessForMediaType:AVMediaTypeVideo completionHandler:^(BOOL granted) {
dispatch_async(dispatch_get_main_queue(), ^{
if (granted) {
//配置扫描view
[self loadScanView];
} else {
NSString *title = @"请在iPhone的”设置-隐私-相机“选项中,允许App访问你的相机";
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:title message
"" delegate:nil cancelButtonTitle
"好" otherButtonTitles:nil];
[alertView show];
}
});
}];
3 配置扫描view
- (void)loadScanView {
//1.初始化捕捉设备(AVCaptureDevice),类型为AVMediaTypeVideo
AVCaptureDevice *captureDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
//2.用captureDevice创建输入流
AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:captureDevice error:nil];
//3.创建媒体数据输出流
AVCaptureMetadataOutput *output = [[AVCaptureMetadataOutput alloc] init];
//4.实例化捕捉会话
_captureSession = [[AVCaptureSession alloc] init];
//4.1.将输入流添加到会话
[_captureSession addInput:input];
//4.2.将媒体输出流添加到会话中
[_captureSession addOutput
utput];
//5.设置代理 在主线程里刷新
[output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];
//5.2.设置输出媒体数据类型为QRCode
[output setMetadataObjectTypes:[NSArray arrayWithObject:AVMetadataObjectTypeQRCode]];
//6.实例化预览图层
_videoPreviewLayer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:_captureSession];
//7.设置预览图层填充方式
[_videoPreviewLayer setVideoGravity:AVLayerVideoGravityResizeAspectFill];
//8.设置图层的frame
[_videoPreviewLayer setFrame:_viewPreview.layer.bounds];
//9.将图层添加到预览view的图层上
[_viewPreview.layer addSublayer:_videoPreviewLayer];
//10.设置扫描范围
output.rectOfInterest = CGRectMake(0.2f, 0.2f, 0.8f, 0.8f);
//10.1.扫描框
_boxView = [[UIView alloc] initWithFrame:CGRectMake(_viewPreview.bounds.size.width * 0.2, _viewPreview.bounds.size.height*0.2, _viewPreview.bounds.size.width - _viewPreview.bounds.size.width * 0.4f, _viewPreview.bounds.size.width - _viewPreview.bounds.size.width * 0.4f)];
_boxView.layer.borderColor = [UIColor redColor].CGColor;
_boxView.layer.borderWidth = 1.0;
[_viewPreview addSubview:_boxView];
_scanLayer = [[CALayer alloc] init];
_scanLayer.frame = CGRectMake(0, 0, _boxView.bounds.size.width, 1);
_scanLayer.backgroundColor = [UIColor blackColor].CGColor;
[_boxView.layer addSublayer:_scanLayer];
[self startRunning];
}
这里我们用到rectOfInterest 这个cgrect跟平时用的不一样,在这里用的是比例来表示,也就是利用这个可以设置扫描的方框的范围
欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/)
Powered by Discuz! 7.0.0