HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

zint — Generate barcodes and QR codes. More information: <https://www.zint.org.uk/manual/chapter/4>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandandbarcodescodesclizintmoregenerate

Problem

How to use the zint command: Generate barcodes and QR codes. More information: <https://www.zint.org.uk/manual/chapter/4>.

Solution

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

Code Snippets

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

Context

tldr-pages: common/zint

Revisions (0)

No revisions yet.