iOS 识别图中二维码

#import"ViewController.h"

@interfaceViewController()<UIActionSheetDelegate>
{
   NSTimer*_timer;
}

@end

@implementation ViewController

- (void)viewDidLoad {
    
    [superviewDidLoad];
    
   UIImageView*zarimage = [[UIImageViewalloc]initWithFrame:CGRectMake(50,50,200,200)];
    zarimage.image= [UIImageimageNamed:@"erweima.jpg"];
    zarimage.userInteractionEnabled=YES;
   UILongPressGestureRecognizer*longPress=[[UILongPressGestureRecognizeralloc]initWithTarget:selfaction:@selector(dealLongPress:)];
    [zarimageaddGestureRecognizer:longPress];
    [self.viewaddSubview:zarimage];
}

#pragma mark->长按识别二维码
    
-(void)dealLongPress:(UIGestureRecognizer*)gesture{

   if(gesture.state==UIGestureRecognizerStateBegan){
       _timer.fireDate=[NSDatedistantFuture];
       UIImageView*tempImageView=(UIImageView*)gesture.view;
       if(tempImageView.image){
           //1.初始化扫描仪,设置设别类型和识别质量
           CIDetector*detector = [CIDetectordetectorOfType:CIDetectorTypeQRCodecontext:niloptions:@{CIDetectorAccuracy:CIDetectorAccuracyHigh}];
           //2.扫描获取的特征组
           NSArray*features = [detector featuresInImage:[CIImageimageWithCGImage:tempImageView.image.CGImage]];
           if(features.count>0) {
               CIQRCodeFeature *feature = [features objectAtIndex:0];
               NSString *scannedResult = feature.messageString;
               NSLog(@"扫描结果------%@",scannedResult);
               UIActionSheet *ac = [[UIActionSheetalloc]initWithTitle:nildelegate:selfcancelButtonTitle:@"取消"destructiveButtonTitle:nilotherButtonTitles:@"发送给朋友",@"收藏",@"保存图片",@"识别图中二维码",nil];
                [acshowInView:self.view];
            }else{
               UIActionSheet *ac = [[UIActionSheetalloc]initWithTitle:nildelegate:selfcancelButtonTitle:@"取消"destructiveButtonTitle:nilotherButtonTitles:@"发送给朋友",@"收藏",@"保存图片",nil];
                [acshowInView:self.view];
            }
        }else{
           UIAlertView* alertView = [[UIAlertViewalloc]initWithTitle:@"扫描结果"message:@"您还没有生成二维码"delegate:nilcancelButtonTitle:@"确定"otherButtonTitles:nil,nil];
            [alertViewshow];
        }
    }elseif(gesture.state==UIGestureRecognizerStateEnded){
       _timer.fireDate=[NSDatedistantPast];
    }
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要在iOS开发中获取图片中二维码的定位,可以使用CoreImage框架。具体步骤如下: 1. 使用CIImage加载图片: ``` CIImage *image = [CIImage imageWithCGImage:image.CGImage]; ``` 2. 创建CIDetector并设置识别类型: ``` CIDetector *detector = [CIDetector detectorOfType:CIDetectorTypeQRCode context:nil options:@{CIDetectorAccuracy:CIDetectorAccuracyHigh}]; ``` 3. 识别二维码: ``` NSArray *features = [detector featuresInImage:image]; ``` 4. 遍历识别结果,获取二维码定位: ``` for (CIQRCodeFeature *feature in features) { NSArray *corners = feature.corners; // 获取定位四个角的坐标 // 在图像上绘制定位 UIGraphicsBeginImageContext(imageSize); CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetStrokeColorWithColor(context, [UIColor greenColor].CGColor); CGContextSetLineWidth(context, 2.0); CGContextMoveToPoint(context, corners[0].x, corners[0].y); CGContextAddLineToPoint(context, corners[1].x, corners[1].y); CGContextAddLineToPoint(context, corners[2].x, corners[2].y); CGContextAddLineToPoint(context, corners[3].x, corners[3].y); CGContextAddLineToPoint(context, corners[0].x, corners[0].y); CGContextStrokePath(context); UIImage *resultImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); } ``` 这样就可以在原图上绘制出二维码的定位了。需要注意的是,CIDetector只能识别二维码,如果要识别其他类型的码,需要设置不同的detector类型。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值