iOS內建掃描 和 產生二維碼

來源:互聯網
上載者:User

原文地址:iOS內建掃描 和 產生二維碼

1.二維碼產生

libqrencode介紹:是一個用C語言編寫的用來解析二維條碼(QRCode)的程式庫,libqrencode通過手機的CCD網路攝影機來掃描二維條碼。http://pan.baidu.com/s/1eQs1Epk

匯入libqrencode庫,下面直接代碼:

[objc]  view plain copy #import <Foundation/Foundation.h>      @interface QRCodeGenerator : NSObject      + (UIImage *)qrImageForString:(NSString *)string imageSize:(CGFloat)size;   + (UIImage *) twoDimensionCodeImage:(UIImage *)twoDimensionCode withAvatarImage:(UIImage *)avatarImage;   @end  
[objc]  view plain copy #import "QRCodeGenerator.h"   #import "qrencode.h"      enum {       qr_margin = 3   };      @implementation QRCodeGenerator      + (void)drawQRCode:(QRcode *)code context:(CGContextRef)ctx size:(CGFloat)size {       unsigned charchar *data = 0;       int width;       data = code->data;       width = code->width;       float zoom = (double)size / (code->width + 2.0 * qr_margin);       CGRect rectDraw = CGRectMake(0, 0, zoom, zoom);              // draw       CGContextSetFillColor(ctx, CGColorGetComponents([UIColor blackColor].CGColor));       for(int i = 0; i < width; ++i) {           for(int j = 0; j < width; ++j) {               if(*data & 1) {                   rectDraw.origin = CGPointMake((j + qr_margin) * zoom,(i + qr_margin) * zoom);                   CGContextAddRect(ctx, rectDraw);               }               ++data;           }       }       CGContextFillPath(ctx);   }      + (UIImage *)qrImageForString:(NSString *)string imageSize:(CGFloat)size {       if (![string length]) {           return nil;       }              QRcode *code = QRcode_encodeString([string UTF8String], 0, QR_ECLEVEL_L, QR_MODE_8, 1

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.