日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

iOS 7 二维码的生成

發布時間:2025/5/22 63 豆豆
生活随笔 收集整理的這篇文章主要介紹了 iOS 7 二维码的生成 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
//二維碼生成//UIImageView *theImageView = [[UIImageView alloc]init];//[self.view addSubview:theImageView];CIFilter *filter = [CIFilter filterWithName:@"CIQRCodeGenerator"];[filter setDefaults];NSData *data = [@"hello worold!" dataUsingEncoding:NSUTF8StringEncoding];[filter setValue:data forKey:@"inputMessage"];CIImage *outputImage = [filter outputImage];CIContext *context = [CIContext contextWithOptions:nil];CGImageRef cgImage = [context createCGImage:outputImagefromRect:[outputImage extent]];UIImage *image = [UIImage imageWithCGImage:cgImagescale:1.orientation:UIImageOrientationUp];NSLog(@"image QRCode : %@",NSStringFromCGSize(image.size));// Resize without interpolatingUIImage *resized = [self resizeImage:imagewithQuality:kCGInterpolationNonerate:5.0];NSLog(@"%@",NSStringFromCGSize(resized.size));UIImageView *theImageView =[[UIImageView alloc]initWithImage:resized];theImageView.frame = CGRectMake(100, 200, 100, 100);[self.view addSubview:theImageView];CGImageRelease(cgImage);

  由于生成的二維碼和圖片非常小,所以使用方法放大了5倍

//Resize image- (UIImage *)resizeImage:(UIImage *)imagewithQuality:(CGInterpolationQuality)qualityrate:(CGFloat)rate {UIImage *resized = nil;CGFloat width = image.size.width * rate;CGFloat height = image.size.height * rate;UIGraphicsBeginImageContext(CGSizeMake(width, height));CGContextRef context = UIGraphicsGetCurrentContext();CGContextSetInterpolationQuality(context, quality);[image drawInRect:CGRectMake(0, 0, width, height)];resized = UIGraphicsGetImageFromCurrentImageContext();UIGraphicsEndImageContext();return resized; }

  生成的結果:

? ? ? ? ??

總結

以上是生活随笔為你收集整理的iOS 7 二维码的生成的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。