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
QR codes can also be encoded with numeric or alphanumeric encoding for optimal data density. Quoting https://en.wikipedia.org/wiki/QR_code
Is this done automatically in this library? How can I configure what encoding should be used?
The text was updated successfully, but these errors were encountered:
Based on a quick test, it looks like alphanumeric encoding is not automatic.
Sorry, something went wrong.
This library worked well for me: https://github.com/soldair/node-qrcode
const QRCode = require('qrcode') QRCode.toString( 'TEXT', { type: 'svg', errorCorrectionLevel: 'M', margin: 0 }, function (error, string) { if (error) console.error(error) console.log(string) } )
No branches or pull requests
QR codes can also be encoded with numeric or alphanumeric encoding for optimal data density. Quoting https://en.wikipedia.org/wiki/QR_code
Is this done automatically in this library? How can I configure what encoding should be used?
The text was updated successfully, but these errors were encountered: