All Projects → zeyu1993 → ZZYQRCode

zeyu1993 / ZZYQRCode

Licence: MIT license
a scanner for QRCode barCode 最好用的ios二维码、条形码,扫描、生成框架,支持闪光灯,从相册获取,扫描音效等,高仿微信,微博

Programming Languages

objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to ZZYQRCode

Zxinglite
🔥 ZXing的精简版,优化扫码和生成二维码/条形码,内置闪光灯等功能。扫描风格支持:微信的线条样式,支付宝的网格样式。几句代码轻松拥有扫码功能 ,ZXingLite让集成更简单。(扫码识别速度快如微信)
Stars: ✭ 2,117 (+1607.26%)
Mutual labels:  scanner, qrcode, barcode
Zzyqrcodeswift
a scanner for QRCode barCode 最好用的ios二维码、条形码,扫描、生成框架,支持闪光灯,从相册获取,扫描音效等,高仿微信,微博
Stars: ✭ 97 (-21.77%)
Mutual labels:  scanner, qrcode, barcode
garden.zbarcam
Migrated to https://github.com/kivy-garden/zbarcam
Stars: ✭ 49 (-60.48%)
Mutual labels:  scanner, qrcode, barcode
Qr Code Scanner
📠 A simple, fast and useful progressive web application
Stars: ✭ 982 (+691.94%)
Mutual labels:  scanner, qrcode, barcode
barcode scan2
[reborned barcode_scan] A flutter plugin for reading 2D barcodes and QR codes.
Stars: ✭ 43 (-65.32%)
Mutual labels:  scanner, qrcode, barcode
Swiftscan
A barcode and qr code scanner( 二维码/条形码扫描、生成,仿微信、支付宝)
Stars: ✭ 293 (+136.29%)
Mutual labels:  scanner, qrcode, barcode
Zzyqrcode
a scanner for QRCode barCode 最好用的ios二维码、条形码,扫描、生成框架,支持闪光灯,从相册获取,扫描音效等,高仿微信,微博
Stars: ✭ 123 (-0.81%)
Mutual labels:  scanner, qrcode, barcode
Qrcode
qrcode scanner ( decoder ) by golang 二维码扫描识别
Stars: ✭ 233 (+87.9%)
Mutual labels:  scanner, qrcode
Iscanner ios
An easy-to-use scanner app for iOS.
Stars: ✭ 66 (-46.77%)
Mutual labels:  scanner, qrcode
Scanbot Sdk Example Android
Document scanning SDK example apps for the Scanbot SDK for Android.
Stars: ✭ 67 (-45.97%)
Mutual labels:  scanner, barcode
Qrandbarcodescanner
An Android app for scanning QR codes and barcodes
Stars: ✭ 114 (-8.06%)
Mutual labels:  scanner, barcode
Qrcodescanner
Android QR Code scanning library : QR Scanning library based on zxing for android devices API 15 and up
Stars: ✭ 117 (-5.65%)
Mutual labels:  scanner, qrcode
Barcode To Pc App
Barcode to PC app
Stars: ✭ 121 (-2.42%)
Mutual labels:  scanner, barcode
Tesseract Ocr Scanner
基于Tesseract-OCR实现自动扫描识别手机号
Stars: ✭ 622 (+401.61%)
Mutual labels:  scanner, qrcode
Code Scanner
Code scanner library for Android, based on ZXing
Stars: ✭ 543 (+337.9%)
Mutual labels:  scanner, barcode
React Native Vision Camera
📸 The Camera library that sees the vision.
Stars: ✭ 443 (+257.26%)
Mutual labels:  scanner, qrcode
Ngx Scanner
Angular (2+) QR code, Barcode, DataMatrix, scanner component using ZXing.
Stars: ✭ 420 (+238.71%)
Mutual labels:  scanner, barcode
Javascript Barcode Reader
Simple and Fast Barcode decoder with support of Code128, Code93, Code39, Standard/Industrial 2 of 5, Interleaved 2 of 5, Codabar, EAN-13, EAN-8 barcodes in javascript.
Stars: ✭ 127 (+2.42%)
Mutual labels:  scanner, barcode
Unitybarcodescanner
Simple Unity Barcode Scanner
Stars: ✭ 180 (+45.16%)
Mutual labels:  scanner, qrcode
Flutter barcode scanner
Barcode scanner plugin for flutter. Supports barcode scanning for Android and iOS
Stars: ✭ 194 (+56.45%)
Mutual labels:  scanner, barcode

ZZYQRCode

Using the system API (AVFoundation) for packaging, including the UI interface and QR code, barcode scanning, generating and other operations

Swift Version: ZZYQRCodeSwift

中文介绍

HOW to install

platform :ios, '8.0'
use_frameworks!
pod 'ZZYQRCode', '~> 1.1.0'

How to use

  1. Create sessionManager
- (instancetype)initWithAVCaptureQuality:(AVCaptureQuality)quality
                           AVCaptureType:(AVCaptureType)type
                                scanRect:(CGRect)scanRect
                            successBlock:(SuccessBlock)success;
  1. Show view
- (void)showPreviewLayerInView:(UIView *)view;

Others features

  1. Scan sound effects
@property(assign, nonatomic) BOOL isPlaySound;

@property(copy, nonatomic) NSString *soundName;
  1. Torch
- (void)turnTorch:(BOOL)state;
  1. Scan the QR code in the album
- (void)scanPhotoWith:(UIImage *)image successBlock:(SuccessBlock)success;
  1. Check authorization status
+ (void)checkAuthorizationStatusForCameraWithGrantBlock:(void(^)())grant
                                            DeniedBlock:(void(^)())denied;
  1. Create QR code
UIImage *image = [UIImage createQRCodeWithSize:200 dataString:@"hello"];
  1. Create customize QR code
UIImage *icon = [UIImage imageNamed:@"bigMax"];
UIImage *image = [UIImage createQRCodeWithSize:200
                                    dataString:@"hello"
                               QRCodeImageType:circularImage
                                     iconImage:icon
                                 iconImageSize:40];

Pay attention

Because of iOS10 authorization change,you need to add code in your info.plist

<key>NSCameraUsageDescription</key>
<string></string>
<key>NSPhotoLibraryUsageDescription</key>
<string></string>

Page show

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].