美文网首页
iOS 13的VisionKit初步探析

iOS 13的VisionKit初步探析

作者: 小鱼闯江湖 | 来源:发表于2020-01-07 23:44 被阅读0次

    今天我看了一下iOS 13的新框架,于是试着玩了一下,感觉还挺实用的,所以写这篇文章来记录一下

    首先VisionKit是一个关于文档识别的框架,可以使用摄像头拍文档,然后将文档转化为扫描件。

    里面只有两个类VNDocumentCameraViewController和VNDocumentCameraScan,还有一个代理VNDocumentCameraViewControllerDelegate

    使用方法如下。首先导入VisionKit框架

    #import <VisionKit/VisionKit.h>

    然后创建VNDocumentCameraViewController控制器。由于VisionKit框架是iOS 13推出的,因此我们要对它进行一个判断,以免低版本编译失败。

    if(@available(iOS 13,*)) {

                //只有支持的机型才能使用,因此要判断是否支持

                if (!VNDocumentCameraViewController.supported) {

                    UIAlertController* alertVC = [UIAlertController alertControllerWithTitle:@"提示" message:@"当前设备不支持!" preferredStyle:UIAlertControllerStyleAlert];

                    [alertVC addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:nil]];

                    [self presentViewController:alertVC animated:YES completion:nil];

                    return;

                }

                VNDocumentCameraViewController* dcVc = [[VNDocumentCameraViewController alloc] init];

                dcVc.delegate=self;

                [self presentViewController:dcVc animated:YES completion:nil];

            }

    然后需要在info.plist文件中添加NSPhotoLibraryAddUsageDescription和NSCameraUsageDescription两个key,以免崩溃

    紧接着遵守VNDocumentCameraViewControllerDelegate代理

    #pragma mark - VNDocumentCameraViewControllerDelegate

    - (void)documentCameraViewController:(VNDocumentCameraViewController *)controller didFinishWithScan:(VNDocumentCameraScan *)scan API_AVAILABLE(ios(13)){

        for(int i = 0; i < [scan pageCount]; i++) {

            UIImage* img = [scan imageOfPageAtIndex:i];

            //此处就可以拿到扫描成功的文档图片了,此处我用到了YYKit保存图片的方法

            [img saveToAlbumWithCompletionBlock:nil];

        }

    }

    - (void)documentCameraViewControllerDidCancel:(VNDocumentCameraViewController *)controller API_AVAILABLE(ios(13)){

        [controller dismissViewControllerAnimated:YES  completion:nil];

    }

    - (void)documentCameraViewController:(VNDocumentCameraViewController *)controller didFailWithError:(NSError *)error API_AVAILABLE(ios(13)){

    }

    这就可以啦!我们看看效果吧

    首先是扫描界面 扫描中的界面 拍照后的界面,会提示让我们调整角落 可以拖动四角进行调整,这是我调整后的界面 调整好后生成的文档照片,是不是跟扫描出来的一样呢?

    相关文章

      网友评论

          本文标题:iOS 13的VisionKit初步探析

          本文链接:https://www.haomeiwen.com/subject/qwxjactx.html