I am using this jquery plugin to generate QR Codes from string:
https://github.com/jeromeetienne/jquery-qrcode
It works fine with strings with less than 35 chars, if the string is 35 o bigger qrCode simply doesn’t get displayed.
My strings are 95 chars long.
Is this a logical limitation ? am I using the wrong library?
Any ideas or reccomendations about this?
(my backend is python/django so any python based solutions would be acceptable too)
Having a look at the github site, there is a closed issue that seems to relate to this: https://github.com/jeromeetienne/jquery-qrcode/issues/2
There appears to be a
typeNumberproperty that can be changed upon creation. It appears that changing this from it’s default of 4 to higher numbers (ie. 8 or so) increases the amount of characters available.I’m not sure what the range of
typeNumbers are, or what exactly it represents (possibly a bit depth or something), but try that out…HTH
EDIT: I googled a bit, and it appears that the
typeNumberrefers to a kind of QRcode “version” of some description.A full breakdown of the versions/
typeNumbers can be found at: http://www.denso-wave.com/qrcode/vertable1-e.html