Megha Mishty
Megha Mishty

Reputation: 61

QR Reader in iphone/ipad

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

Answers (5)

teamalpha5441
teamalpha5441

Reputation: 771

zxing has an iphone port for qr code reading

Upvotes: 0

iOS Developer
iOS Developer

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

Deepesh
Deepesh

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

Macoholic
Macoholic

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

Ankit Gupta
Ankit Gupta

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

Related Questions