我正在构建一个使用 QR 码连接用户的应用程序,类似于 Snapchat 允许用户在 Snapchat 上相互添加的方式。
我希望使用一种更美观的替代 QR 码,类似于 Snapchat 的 Snapcode。关于如何在 iOS 应用程序中完成它的任何想法?
我正在构建一个使用 QR 码连接用户的应用程序,类似于 Snapchat 允许用户在 Snapchat 上相互添加的方式。
我希望使用一种更美观的替代 QR 码,类似于 Snapchat 的 Snapcode。关于如何在 iOS 应用程序中完成它的任何想法?
如果您根本不想使用 QRCode ,则必须创建自己的模式来生成/读取图像。
但也许你可以使用二维码。
QRCode 具有纠错级别。考虑到它,您仍然可以按照您的要求使您的 QRCode 更美观。只要记住“纠错级别越高,存储容量越小”,只要算法能得到你需要的信息,你就可以自定义你的图像。
当您生成 QRCode 图像时,您可以这样做:
斯威夫特 3.1
private enum InputCorrectionLevel: String {
case low = "L" // 7%
case medium = "M" // 15%
case high = "Q" // 25%
case ultra = "H" // 30%
}
private enum QRCodeGenerationError {
case initializingFilter
case applyingFilter
}
func qrCode(from string: String, withSize frameSize: CGSize) throws -> CIImage {
guard let filter = CIFilter(name: "CIQRCodeGenerator") else {
throw QRCodeGenerationError.initializingFilter
}
let data = string.data(using: .isoLatin1, allowLossyConversion: false)
filter.setValue(data, forKey: "inputMessage")
filter.setValue(InputCorrectionLevel.low.rawValue, forKey: "inputCorrectionLevel")
guard let outputImage = filter.outputImage else {
throw QRCodeGenerationError.applyingFilter
}
let scaleX = frameSize.width / outputImage.extent.size.width
let scaleY = frameSize.height / outputImage.extent.size.height
let qrCodeCIImage = outputImage.applying(CGAffineTransform(scaleX: scaleX, y: scaleY))
return qrCodeCIImage
}