| Issue 8: | Patch for /trunk/pyqrnative/src/PyQRNative.py | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Allow creation of QRCodes specifying correction level as minimum fraction of codewords that can be restored. These two lines for example would have the same result: qr = QRCode(20, .07) qr = QRCode(20, QRErrorCorrectLevel.L) |