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
This came up high on google, so why not point you to this one:
https://github.com/dineshrabara/barcode
OR
http://framework.zend.com/manual/1.12/en/zend.barcode.creation.html
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.