Reputation: 127653
ZXing and Zbar can be QR scanner, so what are the open source project for generator for iPhone ?
Upvotes: 3
Views: 1550
Reputation: 1791
I found the following two
https://github.com/kuapay/iOS-QR-Code-Generator
OR
https://github.com/jverkoey/ObjQREncoder
Upvotes: 0
Reputation: 66866
ZXing has a QR code generator inside its main Java code, in the core/ module, package com.google.zxing.qrcode.encode
. It's not ported to C++, but I think you'll find it pretty easy to port.
Upvotes: 1