56 releases
Uses new Rust 2024
| 0.13.2 | Dec 20, 2025 |
|---|---|
| 0.13.1 | Oct 29, 2025 |
| 0.12.1 | Jul 28, 2025 |
| 0.11.8 | Mar 24, 2025 |
| 0.4.2 | Nov 24, 2022 |
#185 in Command line utilities
70KB
1.5K
SLoC
qrtool
qrtool is a command-line utility for encoding and decoding QR code.
Installation
From source
cargo install qrtool
Via a package manager
| OS | Package manager | Command |
|---|---|---|
| Any | Homebrew | brew install qrtool |
| Any | Nix | nix-env -iA nixpkgs.qrtool |
| Arch Linux | Pacman | pacman -S qrtool |
| openSUSE | Zypper | zypper install qrtool |
| Windows | WinGet | winget install --id sorairolake.qrtool -e |
From binaries
The release page contains pre-built binaries for Linux, macOS and Windows.
How to build
Please see BUILD.adoc.
Usage
Basic usage
Encode a string in a QR code:
qrtool encode "QR code" > output.png
Generate this image:
Decode a QR code from this image:
$ qrtool decode output.png
QR code
Output formats
Use -t option to change the format of the generated image.
List of supported formats:
png(default)svgeps(Encapsulated PostScript)pic(PIC markup language)ansi(to the terminal using 4-bit ANSI escape sequences)ansi256(to the terminal using 8-bit ANSI escape sequences)ansi-true-color(to the terminal using 24-bit ANSI escape sequences)ascii(to the terminal as ASCII string)ascii-invertunicode(to the terminal as UTF-8 string)unicode-invert
Encode in a QR code and output as a SVG image:
qrtool encode -o output.svg -t svg "QR code"
Generate this image:
Output to the terminal as UTF-8 string:
qrtool encode -t unicode "QR code"
Types of QR code
Use --variant option to change the variant of the generated QR code. The
variant is normal (default), micro (Micro QR code), or rmqr (rMQR code).
Encode a string in a Micro QR code:
qrtool encode --variant micro "QR code" > output.png
Generate this image:
Encode a string in a rMQR code:
qrtool encode --variant rmqr "QR code" > output.png
Generate this image:
Colored output
Use --foreground and --background options to change the foreground and
background colors of the generated image. These options takes a
CSS color string such as brown, #a52a2a or rgb(165 42 42). The default
foreground color is black and the background color is white of CSS's named
colors.
Encode in a QR code with the specified colors:
qrtool encode --foreground brown --background lightslategray "QR code" > output.png
Generate this image:
[!CAUTION] Note that lossy conversion may be performed depending on the color space supported by the method to specify a color, the color depth supported by the output format, etc.
Supported input image formats
qrtool decode supports decoding a QR code from various image formats.
List of supported image formats:
- BMP
- DDS
- Farbfeld
- GIF
- Radiance RGBE
- ICO[^ico-note]
- JPEG
- OpenEXR
- PNG
- PNM
- QOI
- SVG[^svg-note]
- TGA
- TIFF
- WebP
- XBM
To support decoding from SVG image, the decode-from-svg feature must be
enabled at compile time. Note that the SVG image is rasterized before scanning.
Image formats other than PNG can be disabled by disabling the default
feature, and can be enabled individually.
Use -t option to specify the image format. If this option is not specified,
the image format is determined based on the extension or the magic number.
Input this WebP image:
Decode a QR code from the WebP image:
$ qrtool decode input.webp
QR code
# or
$ qrtool decode -t webp input.webp
QR code
[^ico-note]: CUR is also supported.
[^svg-note]: SVGZ is also supported.
Generate shell completion
completion subcommand generates shell completions to standard output.
The following shells are supported:
bashelvishfishnushellpowershellzsh
Example:
qrtool completion bash > qrtool.bash
Integration with other programs
Both qrtool encode and qrtool decode can read from standard input and
output to standard output.
Optimize the output image
The image output by qrtool encode is not optimized. For example, a PNG image
is always output as the 32-bit RGBA format. If you want to reduce the image
size or optimize the image, use an optimizer such as oxipng or
svgcleaner.
Optimize the output PNG image:
qrtool encode "QR code" | oxipng - > output.png
Optimize the output SVG image:
qrtool encode -t svg "QR code" | svgcleaner -c - > output.svg
[!TIP] If the
optimize-output-pngfeature is enabled, you can also use--optimize-pngoption and--zopflioption of this command to optimize output PNG image.
Reading and writing unsupported image formats
If you want to save the encoded image in an image format other than PNG or SVG, or decode an image in an unsupported image format, convert it using a converter such as ImageMagick or Inkscape.
Raster formats
Encode in a QR code and output as a JPEG 2000 image:
echo 'print("Hello, world!")' > main.py
cat main.py | qrtool encode | magick png:- output.jp2
Decode a QR code from this image:
$ magick output.jp2 png:- | qrtool decode | bat -pp -l py
print("Hello, world!")
Vector formats
Encode in a QR code and output as a PDF file:
echo 'puts "Hello, world!"' > main.rb
cat main.rb | qrtool encode -t svg | inkscape -p -o output.pdf
Decode a QR code from this file:
$ inkscape -o - --export-type svg output.pdf | qrtool decode
puts "Hello, world!"
Command-line options
Please see the following:
Source code
The upstream repository is available at https://github.com/sorairolake/qrtool.git.
Changelog
Please see CHANGELOG.adoc.
Contributing
Please see CONTRIBUTING.adoc.
Acknowledgment
This program is inspired by qrencode and zbarimg.
Home page
https://sorairolake.github.io/qrtool/
License
Copyright (C) 2022 Shun Sakai and contributors (see AUTHORS.adoc)
- This program is distributed under the terms of either the Apache License 2.0 or the MIT License.
- Some files are distributed under the terms of the Creative Commons Attribution 4.0 International Public License.
This project is compliant with version 3.3 of the REUSE Specification. See copyright notices of individual files for more details on copyright and licensing information.
Dependencies
~31–46MB
~839K SLoC