How much data / information can we save / store in a QR code?

后端 未结 2 1951
执笔经年
执笔经年 2020-11-30 22:31

I would like to use this script https://github.com/jeromeetienne/jquery-qrcode
(or is there even a better solution?)

What I like to do is \"save\" some small sc

相关标签:
2条回答
  • 2020-11-30 23:12

    QR codes have three parameters: Datatype, size (number of 'pixels') and error correction level. How much information can be stored there also depends on these parameters. For example the lower the error correction level, the more information that can be stored, but the harder the code is to recognize for readers.

    The maximum size and the lowest error correction give the following values:
    Numeric only Max. 7,089 characters
    Alphanumeric Max. 4,296 characters
    Binary/byte Max. 2,953 characters (8-bit bytes)

    0 讨论(0)
  • 2020-11-30 23:20

    See this table.

    A 101x101 QR code, with high level error correction, can hold 3248 bits, or 406 bytes. Probably not enough for any meaningful SVG/XML data.

    A 177x177 grid, depending on desired level of error correction, can store between 1273 and 2953 bytes. Maybe enough to store something small.

    0 讨论(0)
提交回复
热议问题