iOS 原生的二維碼識別非常之棒,反正比 ZXing 和 ZBar 效果都好些,所以以后打算盡量用原生的二維碼識別,然后最近把原生的二維碼生成也順便做了一遍,并且在原有基礎(chǔ)上加了一些樣式參數(shù),封了一個小庫方便以后使用。
項目地址:https://github.com/EyreFree/EFQRCode
EFQRCode 是一個用 Swift 編寫的用來生成和識別二維碼的庫,它基于系統(tǒng)二維碼生成與識別進(jìn)行開發(fā)。
執(zhí)行以下命令:
git clone git@github.com:EyreFree/EFQRCode.git; cd EFQRCode/Example; pod install; open EFQRCode.xcworkspace
EFQRCode 可以通過 CocoaPods 進(jìn)行獲取。只需要在你的 Podfile 中添加如下代碼就能實現(xiàn)引入:
pod "EFQRCode", '~> 1.2.0'
在你需要使用的地方添加如下代碼引入 EFQRCode 模塊:
import EFQRCode
獲取圖片中所包含的二維碼,同一張圖片中可能包含多個二維碼,所以返回值是一個字符串?dāng)?shù)組:
if let testImage = UIImage(named: "test.png") { if let tryCodes = EFQRCode.recognize(image: testImage) { if tryCodes.count > 0 { print("There are \(tryCodes.count) codes in testImage.") for (index, code) in tryCodes.enumerated() { print("The content of \(index) QR Code is: \(code).") } } else { print("There is no QR Codes in testImage.") } } else { print("Recognize failed, check your input image!") } }
根據(jù)所輸入?yún)?shù)創(chuàng)建各種藝術(shù)二維碼圖片,快速使用方式如下:
// 常用參數(shù): // content: 二維碼內(nèi)容 // inputCorrectionLevel (Optional): 容錯率 // L 7% // M 15% // Q 25% // H 30%(默認(rèn)值) // size (Optional): 邊長 // magnification (Optional): 放大倍數(shù) // (如果 magnification 不為空,將會忽略 size 參數(shù)) // backgroundColor (Optional): 背景色 // foregroundColor (Optional): 前景色 // icon (Optional): 中心圖標(biāo) // iconSize (Optional): 中心圖標(biāo)邊長 // isIconColorful (Optional): 中心圖標(biāo)是否為彩色 // watermark (Optional): 水印圖 // watermarkMode (Optional): 水印圖模式 // isWatermarkColorful (Optional): 水印圖是否為彩色 // 額外參數(shù) // foregroundPointOffset: 前景點偏移量 // allowTransparent: 允許透明
if let tryImage = EFQRCode.generate( content: "https://github.com/EyreFree/EFQRCode", magnification: 9, watermark: UIImage(named: "WWF"), watermarkMode: .scaleAspectFill, isWatermarkColorful: false ) { print("Create QRCode image success!") } else { print("Create QRCode image failed!") }
結(jié)果:
詳情可參見具體使用文檔:https://github.com/EyreFree/EFQRCode/blob/master/README_CN.md
magnificatio
替代 size
,或適當(dāng)提高它們的數(shù)值; Issue
和 Pull request
都是受歡迎的。 備注的備注:好用的話可以給個星星
,蟹蟹,QAQ...