iOS - AVFoundation - 二维码

在以前二维码比较知名的框架是ZXing和Zbar,现在,iOS系统提供了原生的实现二维码的功能

内容:

  • 二维码的扫描(通过摄像头扫描)
  • 二维码的生成
  • 二维码的读取(通过图片识别)

二维码的扫描

二维码扫描使用的是AVFoundation,通过调用摄像头扫描,实现代理方法获取扫描后的数据

步骤:
1.输入设备 : 指定输入设备,如摄像头,麦克风等
2.输出设备 : 解析数据
3.会话(session):连接输入和输出设备
4.图层显示(layer):显示到屏幕上

示例代码:

//  ViewController.m
//  QRCoder
//
//  Created by yangguangyu on 16/8/18.
//  Copyright © 2016年 yangguangyu. All rights reserved.
//

#import "ViewController.h"
#import 

@interface ViewController ()
@property (nonatomic, strong) AVCaptureDevice *device;
@property (nonatomic, strong) AVCaptureDeviceInput *input;
@property (nonatomic, strong) AVCaptureMetadataOutput *output;
@property (nonatomic, strong) AVCaptureSession *session;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    //1.输入设备
    //指定是视频输入设备
    self.device = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo].firstObject;
    self.input = [[AVCaptureDeviceInput alloc] initWithDevice:self.device error:NULL];
    
    //2.输出设备  -- 用来解析数据
    /*
     AVCaptureMetadataOutput    //元数据(查的字典),应该就是没有进过处理的数据
     AVCaptureFileOutput        //把数据当做文件来处理
     AVCaptureMovieFileOutput   //把数据当做视频文件来处理
     AVCaptureVideoDataOutput   //把数据当做视频的data处理
     AVCaptureAudioDataOutput   //把数据当做音频的data处理
     AVCaptureStillImageOutput  //把数据当做静态图片处理处理 -- layer显示的时候就会是图片,不再是视频了
     */
    
    //指定是视频文件输出
    self.output = [[AVCaptureMetadataOutput alloc] init];
    //    NSLog(@"%@",self.output.availableMetadataObjectTypes);
//    self.output.metadataObjectTypes = @[AVMetadataObjectTypeQRCode];//安装QRCode(二维码)来识别
    
    //3.会话
    self.session = [[AVCaptureSession alloc] init];
    //连接输入设备
    if ([self.session canAddInput:self.input]) {
        [self.session addInput:self.input];
    }
    //连接输出设备
    if ([self.session canAddOutput:self.output]) {
        [self.session addOutput:self.output];
    }
    self.output.metadataObjectTypes=@[AVMetadataObjectTypeQRCode];
    //设置代理,监听输出的数据
    [self.output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];
    

    //4.预览图层
    AVCaptureVideoPreviewLayer *layer = [AVCaptureVideoPreviewLayer layerWithSession:self.session];
    layer.frame = [UIScreen mainScreen].bounds;
    [self.view.layer addSublayer:layer];
    
    [self.session startRunning];
    
}

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    if ([self.session isRunning]) {
        [self.session stopRunning];
    }else {
        [self.session startRunning];
    }
}

-(void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection {
    //这里调用的比较频繁,而且还会存在空的情况
    if (metadataObjects.count == 0) {
        return;
    }
    
    for (id obj in metadataObjects) {
        NSLog(@"%@",[obj class]);
        NSLog(@"%@",obj);
        [self.session stopRunning];
    }
}

@end

注意
设置metadataObjectTypes需要在添加output之后才可以,否则的话提示-[AVCaptureMetadataOutput setMetadataObjectTypes:] - unsupported type found. Use -availableMetadataObjectTypes.'通过打印availableMetadataObjectTypes也可以发现,如果是在添加到session之前的话,打印出来的是一个空数组。

二维码的生成

二维码的生成需要使用CoreImage,这个包含在UIKit中

简单示例:

//
//  ViewController.m
//  QRcode生成
//
//  Created by yangguangyu on 16/8/19.
//  Copyright © 2016年 yangguangyu. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()
@property (nonatomic, strong) UIImageView *qrCodeImage;

@end

@implementation ViewController

-(UIImageView *)qrCodeImage {
    if (!_qrCodeImage) {
        _qrCodeImage = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
        _qrCodeImage.center = self.view.center;
    }
    return _qrCodeImage;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    
    //1.创建filter(过滤器)
    CIFilter *filter = [CIFilter filterWithName:@"CIQRCodeGenerator"];
    //2.设置默认值
    [filter setDefaults];
    
    //3.设置输入内容
    NSString *text = @"UIKit框架";
    NSData *data = [text dataUsingEncoding:NSUTF8StringEncoding];
    [filter setValue:data forKey:@"inputMessage"];
    //4.取出生成的图片
    CIImage *ciimage = filter.outputImage;
    //5.放大图片比例(取出的图片很小需要放大,否则图片很模糊)
    ciimage = [ciimage imageByApplyingTransform:CGAffineTransformMakeScale(8, 8)];
    
    self.qrCodeImage.image = [UIImage imageWithCIImage:ciimage];
    [self.view addSubview:self.qrCodeImage];
}

@end

一般的二维码这样就可以了,有一些可能会需要彩色的二维码,或者是需要填充一张公司的logo在二维码的中心。自己简单封装了一下,有需要的可以下载一下QRcodeDemo

二维码的读取

偷个懒,直接copy的里脊窜大大的

读取主要用到CoreImage 不过要强调的是读取二维码的功能只有在iOS8之后才支持

UIImage * srcImage = qrcodeImage;

CIContext *context = [CIContext contextWithOptions:nil];
CIDetector *detector = [CIDetector detectorOfType:CIDetectorTypeQRCode context:context options:@{CIDetectorAccuracy:CIDetectorAccuracyHigh}];
CIImage *image = [CIImage imageWithCGImage:srcImage.CGImage];
NSArray *features = [detector featuresInImage:image];
CIQRCodeFeature *feature = [features firstObject];

NSString *result = feature.messageString;

框架推荐:
LBXScan功能比较全面,如果自己不想研究二维码这块,完全可以使用这个框架
参考:
再见ZXing 使用系统原生代码处理QRCode

你可能感兴趣的:(iOS - AVFoundation - 二维码)