0
votes

I'm about writing a qr code generator , should I write reed solomon error correction methods by myself or is there any free library in PHP or Python to do that ?

thank you

4
There's a lot of API's that can do the dirty work for you: google.com/search?q=qr+code+api - Bailey Parker

4 Answers

1
votes

Yes.. There is an QR code library in PHP. Check the link below: http://phpqrcode.sourceforge.net/

0
votes

I created a Python package galois that extends NumPy arrays over Galois fields. The Galois field arithmetic is written in Python but JIT compiled with Numba. So the arithmetic is as fast, or nearly as fast, as native NumPy.

Included in the library are Reed-Solomon codes.