Reputation: 61
I have one application in which I want to scan QR code + bar codes on food packets for 1 store. I have tried ZBar reader for bar code scanning. It is working perfectly. Now I want to scan QR code also. For that I have searched and downloaded sample code. But all are not proper. Can anybody help?
Upvotes: 0
Views: 2314
Reputation: 1723
i have used this http://zbar.sourceforge.net/iphone/sdkdoc/install.html in many of my applications to read qr codes,bar codes,UPC codes sucessfully
Upvotes: 0
Reputation: 8053
If You want to read QRCode use Zbar sdk
try this
ZBarImageScanner *scanner = reader.scanner;
[scanner setSymbology:ZBAR_QRCODE config:ZBAR_CFG_ENABLE to:1];
Upvotes: 4
Reputation: 1
There are 40 versions of QR code. I am sure ZDBar SDK scans version 1 QRCode I have used it successfully.Check the documentation to verify the other supproted versions. Have yo identified the version of QR codes you want to support ?
Cheers
Upvotes: 0
Reputation: 958
Megha:Zbar SDK is best for bar code and QR Code Scanner u have to try this link https://github.com/a2n/zbar-iphone-example i have also tried this in My Application and its working perfect.
Upvotes: 0