8

I have to create an app in iPhone which can generate QRCode for Text,Mail,Map,Photos etc. And can also Decode the QRCode. Has anyboday have idea about its API or example?

Thanks in advance

Jane
  • 288
  • 1
  • 3
  • 18
  • Take a look at this thread: http://stackoverflow.com/questions/6120071/qr-code-library-for-iphone – Jeroen Coupé Oct 05 '11 at 12:42
  • The posts for [encoding](http://stackoverflow.com/questions/15570678/qrcode-encoding-a-simple-string-in-ios) and [decoding](http://stackoverflow.com/questions/16166646/qr-code-scanning-in-ios-application) QR code may also give some idea regarding that. – Nazik Sep 24 '13 at 08:57

1 Answers1

15

I usually use QR Code Encoder for QR generation and ZBar for decoding QR (It also works with other code standards)

They are very easy to use.

Youssef
  • 3,582
  • 1
  • 21
  • 28
  • I am also looking for both...generation and Reading... Can you please share your code about how to integrate both in a single project...i am getting confused regarding this library and all... – harshit2811 Feb 24 '12 at 06:17
  • @ender Does it scan and generate QR Code for images as well? – Developer Feb 19 '13 at 09:13
  • @Developer do you mean encoding the image itself? I usually encode the image URL. If you want to encode the image itself, try encoding it to a base64 string first. – Youssef Feb 19 '13 at 11:56
  • @ender No, I mean when I scan the QR code, it should display the image as its displays the textual information. Please let me know if it is unclear to you. And please also let me know if it is possible or not. Thanks :-) – Developer Feb 19 '13 at 13:17
  • I know maybe it's too late for answering, but AFAIK you can't do that with those libraries, I think augmented reality would be a better approach for what you need. – Youssef Nov 10 '13 at 11:39