Active Forums => Programs => Topic started by: SquirrelMonkey on January 28, 2022, 02:53:39 pm
Title: QR experiment
Post by: SquirrelMonkey on January 28, 2022, 02:53:39 pm
I made a fake QR-code generator, but I want to convert it into a working text to QR-code generator. For this I need to know how QR codes work.
This is all the information I can find: - A QR code contains position indicators, format information converted into monochrome blocks, data converted into monochrome blocks. - A higher version of a QR code means a bigger size. - There are 4 "error correction levels" (L, M, Q, and H). L has the lowest error correction capability but can contain more data. - It is also possible to set a mode, like numeric or alphanumeric. The alphanumeric mode indicator (probably for URLs and text) is "0010". - The QR code also contains a character count indicator. If the QR code is "hello", 5 characters need to be indicated in binary (000000101). - The version information is stored near two position indicators. - The format information is also stored near position indicators.
Where can I find more information about where and how to put information in a QR-code?