2019-11-28 21:12:20 +00:00
|
|
|
# qrencode
|
|
|
|
|
|
|
|
> QR Code generator. Supports PNG and EPS.
|
2025-04-22 06:20:48 +03:00
|
|
|
> More information: <https://manned.org/qrencode>.
|
2019-11-28 21:12:20 +00:00
|
|
|
|
|
|
|
- Convert a string to a QR code and save to an output file:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`qrencode {{[-o|--output]}} {{path/to/output_file.png}} {{string}}`
|
2019-11-28 21:12:20 +00:00
|
|
|
|
|
|
|
- Convert an input file to a QR code and save to an output file:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`qrencode {{[-o|--output]}} {{path/to/output_file.png}} {{[-r|--read-from]}} {{path/to/input_file}}`
|
2020-02-05 10:56:36 +01:00
|
|
|
|
|
|
|
- Convert a string to a QR code and print it in terminal:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`qrencode {{[-t|--type]}} ansiutf8 {{string}}`
|
2020-02-05 10:56:36 +01:00
|
|
|
|
|
|
|
- Convert input from pipe to a QR code and print it in terminal:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`echo {{string}} | qrencode {{[-t|--type]}} ansiutf8`
|