从QRCode for iPhone创建png图像

时间:2011-05-22 10:00:52

标签: objective-c png qr-code zxing encode

我一直在用zxing解码QRCodes。我现在也让编码器工作,并且可以创建包含编码数据的QRCode。

我问是否有人知道如何将此QRCOde数据转换为png图像。

5 个答案:

答案 0 :(得分:3)

如果您的应用具有在线访问权限,则可以使用http://www.tag.cx/qr-codes/

之类的内容

许多用户正在寻找一种在iPhone上以编程方式编码QR码和其他代码的方法。这些功能尚未从Android移植到iPhone,如此Zxing主题中所述:https://groups.google.com/group/zxing/browse_thread/thread/7325ed13cc49122c/aba6f4545c5c3583?lnk=gst&q=encode+to+png+iphone#aba6f4545c5c3583

请参阅此问题以获得进一步讨论: Generate 2D bar code (e.g. QR Code, Data Matrix, PDF417) on iPhone and Android

您可以使用Phonegap使用插件here对QR条形码进行编码。按照说明操作,您应该会成功。

Javascript很简单,直接来自https://github.com/phonegap/phonegap-plugins/

   window.plugins.barcodeScanner.encode(BarcodeScanner.Encode.TEXT_TYPE, "http://www.nytimes.com", function(success) {
    alert("encode success: " + success);
  }, function(fail) {
    alert("encoding failed: " + fail);
  }, {yesString: "Install"}
);

答案 1 :(得分:0)

psytec编码器(http://groups.google.com/group/zxing/msg/27e421daeb510d0f)效果很好。我在生产中使用它。使用像libpng这样的东西从它产生的位数组转到png应该是相对明星的。在设备上,我浏览它产生的位数组并直接绘制到CG上下文中。

答案 2 :(得分:0)

如果您正在使用phonegap并需要离线支持,那么jquery qrcode可能会有所帮助。

答案 3 :(得分:0)

this Github链接下载QR码生成器的示例代码,它更简单,更容易。将该示例项目中使用的资源文件添加到项目中。

如果您只想显示UIImageview中生成的QR码,您可以直接使用示例项目中的代码

如果您需要带有QR码的png文件,则表示您可以从NSData的图像中获取UIImageview,并将NSData转换为png文件并使用它。

答案 4 :(得分:0)

已编辑此帖有类似问题,我将此答案与此相关联。

我使用这个简单的代码在我的一个项目中编码QRCode。您可以使用:

//
//  QRCodeGeneratorViewController.h
//  
//
//  Created by Jhoney Lopes on 28/09/14.
//  Copyright (c) 2014 Jhoney Lopes. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface QRCodeGeneratorViewController : UIViewController

@end

实施.m

//
//  QRCodeGeneratorViewController.m
// 
//
//  Created by Jhoney Lopes on 28/09/14.
//  Copyright (c) 2014 Jhoney Lopes. All rights reserved.
//

#import "QRCodeGeneratorViewController.h"

@interface QRCodeGeneratorViewController ()
@property (strong, nonatomic) IBOutlet UIImageView *qrImageView;
@end

@implementation QRCodeGeneratorViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.

    [self generateTheQRCodeImageFromDataBaseInfo:@"TEXT-WHAT-YOU-WANT-TO-CONVERT-IN-QRCODE"];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark - QR Code Generator

- (CIImage *)createQRForString:(NSString *)qrString
{
    // Need to convert the string to a UTF-8 encoded NSData object
    NSData *stringData = [qrString dataUsingEncoding:NSUTF8StringEncoding];

    // Create the filter
    CIFilter *qrFilter = [CIFilter filterWithName:@"CIQRCodeGenerator"];
    // Set the message content and error-correction level
    [qrFilter setValue:stringData forKey:@"inputMessage"];
    [qrFilter setValue:@"H" forKey:@"inputCorrectionLevel"];

    // Send the image back
    return qrFilter.outputImage;
}

- (UIImage *)createNonInterpolatedUIImageFromCIImage:(CIImage *)image withScale:(CGFloat)scale
{
    // Render the CIImage into a CGImage
    CGImageRef cgImage = [[CIContext contextWithOptions:nil] createCGImage:image fromRect:image.extent];

    // Now we'll rescale using CoreGraphics
    UIGraphicsBeginImageContext(CGSizeMake(image.extent.size.width * scale, image.extent.size.width * scale));
    CGContextRef context = UIGraphicsGetCurrentContext();
    // We don't want to interpolate (since we've got a pixel-correct image)
    CGContextSetInterpolationQuality(context, kCGInterpolationNone);
    CGContextDrawImage(context, CGContextGetClipBoundingBox(context), cgImage);
    // Get the image out
    UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext();
    // Tidy up
    UIGraphicsEndImageContext();
    CGImageRelease(cgImage);
    return scaledImage;
}

- (void)generateTheQRCodeImageFromDataBaseInfo:(NSString *)jsonString {

    // Get the string
    NSString *stringToEncode = jsonString;

    // Generate the image
    CIImage *qrCode = [self createQRForString:stringToEncode];

    // Convert to an UIImage
    UIImage *qrCodeImg = [self createNonInterpolatedUIImageFromCIImage:qrCode withScale:2*[[UIScreen mainScreen] scale]];

    // And push the image on to the screen
    self.qrImageView.image = qrCodeImg;
}