-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New Feature! #51
Comments
How it is expected to work? QR codes have 40 standard sizes (called versions), each size have it's own dimensions in modules (squares). Also each QR code has capacity, varying from 72 bits (code version 1, error correction level H) to 23648 bits (code version 40, error correction L) The minimal size (version) of QR Code for specific data depends on error correction level only. So, on-screen QR code size may me scaled up only by multiplying by natural number (x2, x3,...) (make each module fill 1x1 on-screen cell, 2x2, 3x3 etc.) |
Well. Can we reduce the size of the QR code by reducing the error tolerance? My original claim is actually that my console is small enough to output the QR code on a single screen. |
When using command line mode, it seems that L (lowest) ErrorCorrection level is used. You can not specify EC level using command line now, and you can not drop EC level below L |
You can reduce QR code size by reducing dsts by changing alphabet used in data. Sizing is Byte mode > Alphanumeric mode (A-Z upper, 0-9, some special chars) > Numbers only. |
Hi. Thanks for your reply. I have a question, Where I can do this:
|
UPD My bad. But instead, author decided to use always |
I want to do something with this nice repo:
support config of size
.Such as:
It will output QRcode with different size.
The text was updated successfully, but these errors were encountered: