4
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

URLからQRコードを生成する

Posted at

手順

これをコピペ

extension String {

    func generateQR() -> UIImage? {
        guard let data = self.data(using: .utf8) else { return nil }
        guard let qr = CIFilter(name: "CIQRCodeGenerator", parameters: ["inputMessage": data, "inputCorrectionLevel": "M"]) else { return nil }
        let sizeTransform = CGAffineTransform(scaleX: 10, y: 10)
        guard let qrImage = qr.outputImage?.transformed(by: sizeTransform) else { return nil }
        return UIImage(ciImage: qrImage)
    }
}

したらこう使う


imageView.image = "https://github.com/son".generateQR()
Screen Shot 2019-11-06 at 0.03.10.png

やったね!

4
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?