二维码的生成
百科上说二维码最多容纳 1108个字节 近似1kb
二维码的生成原理:
是用滤镜生成的 给滤镜设置值即可
CIFilter *qrcFilter = [CIFilter filterWithName:@"CIQRCodeGenerator"];//二维码生成滤镜名称
[qrcFilter setValue:data forKey:@"inputMessage"];//设置data数据
[qrcFilter setValue:@"H" forKey:@"inputCorrectionLevel"];
UIImage *image = [UIImage imageWithCIImage: qrcFilter.outputImage];
注释:如何知道有哪些滤镜,以及参数如何设置呢
[CIFilter filterNamesInCategory:nil];//使用此方法查看所有滤镜名称 返回值是一个数组
//使用此方法CIFilter *qrcFilter = [CIFilter filterWithName:@"CIQRCodeGenerator"];创建滤镜之后,根据拿到的滤镜查看相关属性
qrcFilter.attributes;//数组 里面包含滤镜的相关介绍和参数说明
qrcFilter.inputKeys;//数组 包含需要输入的参数
最顶上的写法已经可以生成了一个二维码,注意inputMessage的value需要二进制数据,但是生成二维码还是比较小的.我们需要把它缩放到合适的大小.我们可以采用图片重绘的方法.如下,注意interpolationQualityType插值类型需要写无插值kCGInterpolationNone 要不然生成的二维码是模糊的
-(UIImage *)ScaleToSize:(CGSize )size Withtype:(CGInterpolationQuality)interpolationQualityType{
//开启画布
UIGraphicsBeginImageContextWithOptions(size, NO, Scale);
CGContextSetInterpolationQuality(UIGraphicsGetCurrentContext(), interpolationQualityType);
//重新绘制
[self drawInRect:CGRectMake(0, 0, size.width, size.height)];
//获取图片
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
//结束绘制
UIGraphicsEndImageContext();
return result;
}
生成带颜色的二维码
这个仍然需要滤镜,这个滤镜的名字是伪颜色滤镜.也就是说颜色是假的,不会影响二维码存储的真实信息.
多个滤镜使用时,通常上一个滤镜的结果是这个滤镜的输入.
CIFilter *falseColor = [CIFilter filterWithName:@"CIFalseColor"];
[falseColor setValue:qrcFilter.outputImage forKey:kCIInputImageKey];//上个滤镜的输出作为这个滤镜的输入
[falseColor setValue:[CIColor colorWithCGColor:foreColor.CGColor] forKey:@"inputColor0"];//二维码颜色
[falseColor setValue:[CIColor colorWithCGColor:backColor.CGColor] forKey:@"inputColor1"];//底部背景色
image = [UIImage imageWithCIImage: falseColor.outputImage];
这样得到的图片就是带颜色的图片,其中的前景色和背景色类型需要CIColor
注意UIIimage的CIImage属性可能为空
如果需要和上一步结合使用的话,拿到滤镜的最终输出结果在对图片进行缩放.
生成带图片的二维码
生成带图片的二维码,只需要在生成之后的二维码上添加一张图片就可以了.你可以选择绘图,也可以选择直接在ImageView上添加一个ImageView.但是绘图要更高效,这里采用绘图.
UIImage *circleImage = [insertImage CircleImage];
//创建上下文
UIGraphicsBeginImageContext(image.size);
//绘制二维码
[image drawInRect:CGRectMake(0, 0, image.size.width, image.size.height)];
[circleImage drawInRect:CGRectMake((image.size.width - imageSize.width)/2, (image.size.height - imageSize.height)/2, imageSize.width, imageSize.height)];
//获取图像
image = UIGraphicsGetImageFromCurrentImageContext();
//结束上下文
UIGraphicsEndImageContext();
注意:图片的大小当然是会影响二维码信息的,因此不要太大哦
代码整理
整理出了方法,你可以直接复制到你的项目中使用,
/**生成二维码
百科上说二维码最多容纳 1108个字节 近似1kb
1.二维码的内容需要转成为二进制数据
2.插入图片所占据的尺寸会影响二维码的扫描识别
3.前景色和背景色要么都设置要么都不设置 并且前景色和背景色不能一样或太接近
@param data 二维码数据信息 字符串 网址 等需要转成二进制数据
@param size 二维码的大小
@param insertImage 要插入的图片 默认会切圆角
@param imageSize 在二维码中图片显示的尺寸,图片过大会影响识别效果
@param foreColor 二维码颜色
@param backColor 二维码背景颜色
*/
+(UIImage *)createQRImageWithData:(nonnull NSData *)data QRCSize:(CGSize)size InsertImage:(UIImage *)insertImage imageSize:(CGSize)imageSize ForeColor:(UIColor *)foreColor andBackColor:(UIColor *)backColor{
//1.二维码生成滤镜
CIFilter *qrcFilter = [CIFilter filterWithName:@"CIQRCodeGenerator"];
[qrcFilter setValue:data forKey:@"inputMessage"];
[qrcFilter setValue:@"H" forKey:@"inputCorrectionLevel"];
UIImage *image = [UIImage imageWithCIImage: qrcFilter.outputImage];
//2.颜色滤镜
if (foreColor && backColor) {
CIFilter *falseColor = [CIFilter filterWithName:@"CIFalseColor"];
[falseColor setValue:qrcFilter.outputImage forKey:kCIInputImageKey];
[falseColor setValue:[CIColor colorWithCGColor:foreColor.CGColor] forKey:@"inputColor0"];//二维码颜色
[falseColor setValue:[CIColor colorWithCGColor:backColor.CGColor] forKey:@"inputColor1"];//底部背景色
image = [UIImage imageWithCIImage: falseColor.outputImage];
}
//3.生成二维码
image = [image ScaleToSize:size Withtype:kCGInterpolationNone];
//4.绘制一个头像到二维码上
if (insertImage) {
UIImage *circleImage = [insertImage CircleImage];
//创建上下文
UIGraphicsBeginImageContext(image.size);
//绘制二维码
[image drawInRect:CGRectMake(0, 0, image.size.width, image.size.height)];
//绘制头像 假设头像是100 100
[circleImage drawInRect:CGRectMake((image.size.width - imageSize.width)/2, (image.size.height - imageSize.height)/2, imageSize.width, imageSize.height)];
//获取图像
image = UIGraphicsGetImageFromCurrentImageContext();
//结束上下文
UIGraphicsEndImageContext();
}
return image;
}
//这个方法,在上面有用到
-(UIImage *)ScaleToSize:(CGSize )size Withtype:(CGInterpolationQuality)interpolationQualityType{
//开启画布
UIGraphicsBeginImageContextWithOptions(size, NO, Scale);
CGContextSetInterpolationQuality(UIGraphicsGetCurrentContext(), interpolationQualityType);
//重新绘制
[self drawInRect:CGRectMake(0, 0, size.width, size.height)];
//获取图片
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
//结束绘制
UIGraphicsEndImageContext();
return result;
}
二维码的识别
二维码的识别需要用到二维码检测类
检测图片中的二维码特征,检测到返回即可,其中特征中会包含二维码信息,这个属性就是messageString.我封装了一个方法,可以直接拿来用.注意这个是分类方法,self本身就是一个image
/**
检测二维码返回结果
没有结果返回nil
@param detectImage 待检测的图片
@return 返回的二维码信息
*/
-(NSString *)hasQRCmessage{
NSData *data = UIImageJPEGRepresentation(self, 1);
CIImage *resultImage = [CIImage imageWithData:data];
//检测二维码
CIDetector *detector = [CIDetector detectorOfType:CIDetectorTypeQRCode context:nil options:@{CIDetectorAccuracy:CIDetectorAccuracyHigh}];
NSArray *resultArr = [detector featuresInImage:resultImage];
if (resultArr.count > 0) {
CIQRCodeFeature *qrcFeature = resultArr.firstObject;
return qrcFeature.messageString;
}
return nil;
}