You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
654 B

//
// LCQrcodeUtil.h
// 二维码测试
//
// Created by 刘通超 on 16/5/5.
// Copyright © 2016年 刘通超. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface LCQRCodeUtil : NSObject
/**
*
*
* @param QRString
* @param sizeWidth size
* @param color
*
* @return
*/
+(UIImage *)createQRimageString:(NSString *)QRString sizeWidth:(CGFloat)sizeWidth fillColor:(UIColor *)color;
/**
*
*
* @param image
*
* @return
*/
+(NSString *)readQRCodeFromImage:(UIImage *)image;
@end