Skip to main content

Questions tagged [qr-code]

For questions about encoding, scanning, or decoding a QR code, which is a two-dimensional barcode, a machine-readable optical label that contains information about the item to which it is attached.

Filter by
Sorted by
Tagged with
1 vote
1 answer
886 views

I'd like to generate a full-page QR code from the command line. The following command sort of accomplishes this: qrencode -o- https://example.net | convert png:- -gravity center -units pixelsperinch -...
user3188445's user avatar
  • 5,569
3 votes
3 answers
1k views

I need to generate several thousand qr codes of simple IDs (1234, 1235, 1236, ...) and want to be able to also make them human readable. qrencode is a really cool tool to generate qr-codes, BUT no ...
Frischling's user avatar
9 votes
6 answers
13k views

I want to generate a QR code of my 4096-bit armored GPG private key. The key is so big, the program qrencode seems to fail because of its size. $ gpg --export-secret-keys --armor > ~/private.key $ ...
uuu's user avatar
  • 762