We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
(cl-qrencode:encode-png "herpderp")
results in a QR code that is being decoded to
herpl�rp
(with zbarimg, an Android phone app and e.g. https://zxing.org/w/decode.jspx).
zbarimg
With the same settings, e.g. using qrencode -8 -l M "herpderp" -o qrcode-correct.png the data is decoded correctly, giving the resulting raw bytes
qrencode -8 -l M "herpderp" -o qrcode-correct.png
40 86 86 57 27 06 46 57 27 00 ec 11 ec 11 ec 11
whereas the wrong sequence is
40 86 86 57 27 06 c8 57 27 00 ec 11 ec 11 ec 11
With a bit of tracing I now think this is after the bit stream generation, so possibly in the EC coding functions.
(N.b. this is using an AFAIK fixed version of the padding, c.f. #5.)
The text was updated successfully, but these errors were encountered:
Thanks for your feedback.
I've been busy at work lately, will take a look at it this weekend.
Sorry, something went wrong.
Skip leading zeros during polynomial modulo, fix issue #4
b205f14
Fixed in b205f14.
Thanks again for your feedback.
\o/ thanks so much!
No branches or pull requests
results in a QR code that is being decoded to
(with
zbarimg
, an Android phone app and e.g. https://zxing.org/w/decode.jspx).With the same settings, e.g. using
qrencode -8 -l M "herpderp" -o qrcode-correct.png
the data is decoded correctly, giving the resulting raw byteswhereas the wrong sequence is
With a bit of tracing I now think this is after the bit stream generation, so possibly in the EC coding functions.
(N.b. this is using an AFAIK fixed version of the padding, c.f. #5.)
The text was updated successfully, but these errors were encountered: