Can anyone recommend a PHP library (if one exist) that will generate and decode QR codes? This seems to do the job: http://code.google.com/p/zxing/ but it is in Java. If I have to use ZXing, how do I make it work from PHP?

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

Looks like PHP QR Code will do what you want.

link|improve this answer
.... but it doesn't decode - sorry! perhaps two libs? – mjbnz Oct 25 '11 at 22:06
I've looked at this. It seems to only generate QR codes. I need to generate and decode. Suggestions? – StackOverflowNewbie Oct 25 '11 at 22:36
From what I can tell, there are no PHP native apps at this stage to decode. I'd suggest looking at zxing further - a previous question mentioned a C++ implementation which you may be able to coerce into a PHP extension. Alternatively, I believe zxing has a web accessible decoder which you could use from PHP. – mjbnz Oct 25 '11 at 22:48
I can't use a web service. How do I convert C++ to a PHP library? – StackOverflowNewbie Oct 26 '11 at 0:31
You wouldn't.. you'd write a php extension to use the C++ library. A little beyond my knowledge of PHP sorry. – mjbnz Oct 26 '11 at 3:48
feedback

If you're willing to work over HTTP:

There is a web-based encoder from zxing at http://zxing.org/w/decode.jspx. I don't suggest you use it directly, but since the source is available in the open-source project under zxingorg/, you can easily run your own. Then you can decode QR codes by POSTing the image data to the server over HTTP.

For encoding, likewise, you could just use the Google Chart Server, which has generated QR codes for a long time. Look at http://zxing.appspot.com/generator -- it will show you the image URL pointing to the chart server that makes the image. You can just use the same to grab encoded images in PHP.

link|improve this answer
feedback

You can also go for http://www.barcodephp.com/en/2d/qrcode to generate qrcode.

If you try to find a library that generate and read barcodes, I find it risky... Because if there is a bug in one of them, then they will not notice it and your barcodes would not be readable with other readers. Since they may test with the same logic :P

link|improve this answer
feedback

for creatng a qrcode barcode in php you can use this classes:

http://www.java4less.com/barcodes/QRCode/php/

but for decoding I am not aware of any pure php solution. I in fact tried that but the performace of php is too poor for that kind of image processing and recognition

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.