I want to read(Decode) the generated QRcode. I had found the link for encoding the QRCODE in github.But didnt get the link or anything from where i can decode the generated qrcode.I had gone through zbar and Zxing.But it is not working properly. And this is not free licence.i want something which is free licensed and can encode and decode the code properly. Can any one please help me out.
feedback
|
|
Try ZBar and read the docs, it's very easy to use, you can scan from image, or scan from camera feed. Also you can use free generator online to test your apps. EDIT: For encode you could call the Google Chart Api like this if you want for example a qr code iamge that contains the link www.google.com (so just replace the link with your data, 300x300 is the size):
| |||||||
feedback
|
|
You can browse the zxing code online here and checkout it and also download it here : http://code.google.com/p/zxing/source/checkout You can also try out this project started by one of my colleague in thoughtworks : http://www.codeproject.com/KB/cs/qrcode.aspx Since these are in java and .net Im not sure if they will be useful to you because you mentioned iPhone in your title. ZXing in addition to the main java codebase has a pretty good C# port, and it works for me with a little bit of tinkering around with the code to suit my machine. Zxing also works on iPhone because they have an app around their library called "barcodes" It is very fast, open source and it is your best bet. Also onbarcode is also a good option and I know a few people who used it with success. Documentation exists albiet a bit poor. | |||||
feedback
|