IOS Swift 開發(fā)QRCore(二維碼)實例詳解
更新時間:2016年12月04日 11:56:31 投稿:lqh
這篇文章主要介紹了IOS Swift 開發(fā)QRCore(二維碼)實例詳解的相關(guān)資料,這里對開發(fā)二維碼進行了詳細介紹,需要的朋友可以參考下
1、搭個界面

2、寫代碼
//
// ViewController.swift
// GeneratorQRCode
//
// Created by targetcloud on 2016/12/3.
// Copyright © 2016年 targetcloud. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var qrImg: UIImageView!
@IBOutlet weak var qrContent: UITextView!
@IBAction func generatorQRImg(_ sender: Any) {
view.endEditing(true)
let str = qrContent.text ?? ""
let filter = CIFilter(name: "CIQRCodeGenerator")
filter?.setDefaults()
let data = str.data(using: String.Encoding.utf8)
filter?.setValue(data, forKey: "inputMessage")
filter?.setValue("M", forKey: "inputCorrectionLevel")
var image = filter?.outputImage
let transform = CGAffineTransform(scaleX: 10, y: 10)//處理成為一個高清圖片
image = image?.applying(transform)
var resultImage = UIImage(ciImage: image!)
let centerImg = UIImage(named: "targetcloud.png")
resultImage = mergeImage(resultImage, centerImg: centerImg!, drawSize:CGSize(width: 80, height: 80))
qrImg.image = resultImage
}
func mergeImage(_ sourceImage: UIImage, centerImg: UIImage,drawSize:CGSize) -> UIImage {
let size = sourceImage.size
UIGraphicsBeginImageContext(size)
sourceImage.draw(in: CGRect(x: 0, y: 0, width: size.width, height: size.height))
centerImg.draw(in: CGRect(x: (size.width - drawSize.width) * 0.5, y: (size.height - drawSize.height) * 0.5, width: drawSize.width, height: drawSize.height))
let resultImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return resultImage!
}
}
3、運行效果


感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
您可能感興趣的文章:
相關(guān)文章
iOS開發(fā)中Date Picker和UITool Bar控件的使用簡介
這篇文章主要介紹了iOS開發(fā)中Date Picker和UITool Bar控件的使用簡介,代碼基于傳統(tǒng)的Objective-C,需要的朋友可以參考下2016-01-01
iOS學(xué)習(xí)教程之UIView中坐標(biāo)轉(zhuǎn)換詳解
這篇文章主要給大家介紹了關(guān)于iOS UIView中坐標(biāo)轉(zhuǎn)換的相關(guān)資料,文中介紹的非常詳細,對大家具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來跟著小編一起看看吧。2017-05-05
iOS UICollectionView刷新時閃屏的解決方法
本篇文章主要介紹了iOS UICollectionView刷新時閃屏的解決方法,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-11-11

