mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 12:41:53 +00:00
22 lines
463 B
Plaintext
22 lines
463 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# zint
|
|
|
|
> Generate barcodes and QR codes.
|
|
> More information: <https://www.zint.org.uk/manual/chapter/4>.
|
|
|
|
- Generate a barcode and save it:
|
|
|
|
`zint --data "{{UTF-8 data}}" --output {{path/to/file}}`
|
|
|
|
- Specify a code type for generation:
|
|
|
|
`zint --barcode {{code_type}} --data "{{UTF-8 data}}" --output {{path/to/file}}`
|
|
|
|
- List all supported code types:
|
|
|
|
`zint --types`
|