zoukankan      html  css  js  c++  java
  • AJ学IOS 之二维码学习,快速打开相机读取二维码

    AJ分享,必须精品

    上一篇文章写了怎么生成二维码,这儿就说说怎么读取吧,反正也很简单,iOS封装的太强大了

    步骤呢就是这样:
    读取二维码需要导入AVFoundation框架#import <AVFoundation/AVFoundation.h>
    1:利用摄像头识别二维码中的内容(模拟器不行)。
    2:输入(摄像头)。
    3:由会话将摄像头采集到的二维码图像转换成字符串数据。
    4:输出(数据)。
    5:由预览图层显示扫描场景。

    #import "ViewController.h"
    #import <AVFoundation/AVFoundation.h>
    
    @interface ViewController ()<AVCaptureMetadataOutputObjectsDelegate>
    @property (nonatomic, strong) AVCaptureSession *session;
    @property (nonatomic, strong) AVCaptureVideoPreviewLayer *previewLayer;
    @end
    
    @implementation ViewController
    
    - (void)viewDidLoad {
        [super viewDidLoad];
        // Do any additional setup after loading the view, typically from a nib.
    
        // 1. 实例化拍摄设备
        AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
    
        // 2. 设置输入设备
        AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device error:nil];
    
        // 3. 设置元数据输出
        // 3.1 实例化拍摄元数据输出
        AVCaptureMetadataOutput *output = [[AVCaptureMetadataOutput alloc] init];
        // 3.3 设置输出数据代理
        [output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];
    
        // 4. 添加拍摄会话
        // 4.1 实例化拍摄会话
        AVCaptureSession *session = [[AVCaptureSession alloc] init];
        // 4.2 添加会话输入
        [session addInput:input];
        // 4.3 添加会话输出
        [session addOutput:output];
        // 4.3 设置输出数据类型,需要将元数据输出添加到会话后,才能指定元数据类型,否则会报错
        [output setMetadataObjectTypes:@[AVMetadataObjectTypeQRCode]];
    
        self.session = session;
    
        // 5. 视频预览图层
        // 5.1 实例化预览图层, 传递_session是为了告诉图层将来显示什么内容
        AVCaptureVideoPreviewLayer *preview = [AVCaptureVideoPreviewLayer layerWithSession:_session];
    
        preview.videoGravity = AVLayerVideoGravityResizeAspectFill;
        preview.frame = self.view.bounds;
        // 5.2 将图层插入当前视图
        [self.view.layer insertSublayer:preview atIndex:100];
    
        self.previewLayer = preview;
    
        // 6. 启动会话
        [_session startRunning];
    
    }
    
    #pragma mark - AVCaptureMetadataOutputObjectsDelegate 代理方法
    - (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection
    {
    
        // 会频繁的扫描,调用代理方法
        // 1. 如果扫描完成,停止会话
        [self.session stopRunning];
        // 2. 删除预览图层
        [self.previewLayer removeFromSuperlayer];
    
        NSLog(@"%@", metadataObjects);
        // 3. 设置界面显示扫描结果
    
        if (metadataObjects.count > 0) {
            AVMetadataMachineReadableCodeObject *obj = metadataObjects[0];
            // 提示:如果需要对url或者名片等信息进行扫描,可以在此进行扩展!
    //        _label.text = obj.stringValue;
            NSLog(@"%@", obj.stringValue);
        }
    }
    
  • 相关阅读:
    用csc命令行手动编译cs文件
    笔录---果壳中的C#第一章
    Visual Studio2012快捷键总结
    JavaScript 二维数组排列组合2
    JavaScript 递归法排列组合二维数组2
    JavaScript 递归法排列组合二维数组
    JavaScript 二维数组排列组合
    在 CentOS6 上安装 GraphicsMagick-1.3.30
    Execution default-resources of goal org.apache.maven.plugins:maven-resources-plugin:2.6:resources failed: Unable to load the mojo 'resources' (or one of its required components)
    java.sql.SQLException: Column count doesn't match value count at row 1
  • 原文地址:https://www.cnblogs.com/luolianxi/p/4990280.html
Copyright © 2011-2022 走看看