使用系统的AVMetadataObject类实现二维码扫描

来源:互联网 发布:大学生linux基础知识 编辑:程序博客网 时间:2024/05/20 09:44

前言

有关二维码的介绍,我这里不做过多说明, 可以直接去基维百科查看,附上链接QR code.
IOS7之前,开发者进行扫码编程时,一般会借助第三方库。常用的是ZBarSDKa和ZXingObjC,IOS7之后,系统的AVMetadataObject类中,为我们提供了解析二维码的接口。经过测试,使用原生API扫描和处理的效率非常高,远远高于第三方库。

扫描

官方提供的接口非常简单,直接看代码,主要使用的是AVFoundation。

 
@interface ViewController ()<AVCaptureMetadataOutputObjectsDelegate>//用于处理采集信息的代理{    AVCaptureSession * session;//输入输出的中间桥梁}@end@implementation ViewController - (void)viewDidLoad {    [super viewDidLoad];    // Do any additional setup after loading the view, typically from a nib.    //获取摄像设备    AVCaptureDevice * device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];    //创建输入流    AVCaptureDeviceInput * input = [AVCaptureDeviceInput deviceInputWithDevice:device error:nil];    if (!input) return;    //创建输出流    AVCaptureMetadataOutput * output = [[AVCaptureMetadataOutput alloc]init];    //设置代理 在主线程里刷新    [output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];    //设置有效扫描区域    CGRect scanCrop=[self getScanCrop:_scanWindow.bounds readerViewBounds:self.view.frame];     output.rectOfInterest = scanCrop;    //初始化链接对象    _session = [[AVCaptureSession alloc]init];    //高质量采集率    [_session setSessionPreset:AVCaptureSessionPresetHigh];        [_session addInput:input];    [_session addOutput:output];    //设置扫码支持的编码格式(如下设置条形码和二维码兼容)    output.metadataObjectTypes=@[AVMetadataObjectTypeQRCode,AVMetadataObjectTypeEAN13Code, AVMetadataObjectTypeEAN8Code, AVMetadataObjectTypeCode128Code];        AVCaptureVideoPreviewLayer * layer = [AVCaptureVideoPreviewLayer layerWithSession:_session];    layer.videoGravity=AVLayerVideoGravityResizeAspectFill;    layer.frame=self.view.layer.bounds;    [self.view.layer insertSublayer:layer atIndex:0];    //开始捕获    [_session startRunning];}-(void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection{    if (metadataObjects.count>0) {        //[session stopRunning];        AVMetadataMachineReadableCodeObject * metadataObject = [metadataObjects objectAtIndex : 0 ];        //输出扫描字符串        NSLog(@"%@",metadataObject.stringValue);    }}

一些初始化的代码加上实现代理方法便完成了二维码扫描的工作,这里我们需要注意的是, 在二维码扫描的时候, 我们一般都会在屏幕中间放一个方框,用来显示二维码扫描的大小区间,这里我们在个AVCaptureMetadataOutput类中有一个rectOfInterest属性,它的作用就是设置扫描范围。

这个CGRect参数和普通的Rect范围不太一样,它的四个值的范围都是0-1,表示比例。
rectOfInterest都是按照横屏来计算的 所以当竖屏的情况下 x轴和y轴要交换一下。
宽度和高度设置的情况也是类似。

我们在上面设置有效扫描区域的方法如下

 
#pragma mark-> 获取扫描区域的比例关系-(CGRect)getScanCrop:(CGRect)rect readerViewBounds:(CGRect)readerViewBounds{        CGFloat x,y,width,height;        x = (CGRectGetHeight(readerViewBounds)-CGRectGetHeight(rect))/2/CGRectGetHeight(readerViewBounds);    y = (CGRectGetWidth(readerViewBounds)-CGRectGetWidth(rect))/2/CGRectGetWidth(readerViewBounds);    width = CGRectGetHeight(rect)/CGRectGetHeight(readerViewBounds);    height = CGRectGetWidth(rect)/CGRectGetWidth(readerViewBounds);        return CGRectMake(x, y, width, height);    }

读取

读取主要用到CoreImage 不过要强调的是读取二维码的功能只有在iOS8之后才支持,我们需要在相册中调用一个二维码,将其读取,代码如下

 
#pragma mark-> 我的相册-(void)myAlbum{        NSLog(@"我的相册");    if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]){        //1.初始化相册拾取器        UIImagePickerController *controller = [[UIImagePickerController alloc] init];        //2.设置代理        controller.delegate = self;        //3.设置资源:        /**         UIImagePickerControllerSourceTypePhotoLibrary,相册         UIImagePickerControllerSourceTypeCamera,相机         UIImagePickerControllerSourceTypeSavedPhotosAlbum,照片库         */        controller.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;        //4.随便给他一个转场动画        controller.modalTransitionStyle=UIModalTransitionStyleFlipHorizontal;        [self presentViewController:controller animated:YES completion:NULL];            }else{                UIAlertView * alert = [[UIAlertView alloc]initWithTitle:@"提示" message:@"设备不支持访问相册,请在设置->隐私->照片中进行设置!" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];        [alert show];    }    }

完成相册代理, 我们在代理中添加读取二维码方法

 
#pragma mark-> imagePickerController delegate- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{    //1.获取选择的图片    UIImage *image = info[UIImagePickerControllerOriginalImage];    //2.初始化一个监测器    CIDetector*detector = [CIDetector detectorOfType:CIDetectorTypeQRCode context:nil options:@{ CIDetectorAccuracy : CIDetectorAccuracyHigh }];        [picker dismissViewControllerAnimated:YES completion:^{        //监测到的结果数组        NSArray *features = [detector featuresInImage:[CIImage imageWithCGImage:image.CGImage]];        if (features.count >=1) {            /**结果对象 */            CIQRCodeFeature *feature = [features objectAtIndex:0];            NSString *scannedResult = feature.messageString;            UIAlertView * alertView = [[UIAlertView alloc]initWithTitle:@"扫描结果" message:scannedResult delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];            [alertView show];                  }        else{            UIAlertView * alertView = [[UIAlertView alloc]initWithTitle:@"提示" message:@"该图片没有包含一个二维码!" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];            [alertView show];                    }              }];        }

因为没用真机,所以这里没有给出太多的截图, 用模拟器读取自带图片,结果如下


Demo下载链接

0 0
原创粉丝点击