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?
|
feedback
|
|
Looks like PHP QR Code will do what you want. | |||||||||||
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 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. | |||
|
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 | |||
|
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 | |||
|
feedback
|