QRG CLI

QR Generate!

For more information on the project, take a look at the README and this website.

Installation

Note Make sure you have Cargo installed

Currently, as the crate is not published, you can only install it from source with

sh cargo install --path cli

Usage

You can get the list of available commands as follows:

``` $ qrg -h Generates QRCodes with a logo overlay.

Usage: qrg.exe [OPTIONS]

Arguments: The text the qr code should contain

Options: -d, --destination The filename the QR Code should be saved in [default: out.png] -s, --size The size of the QR Code [default: 600] -c, --bg-color The background color of the QR Code (in hex) [default: FFFFFF] -l, --logo The name of the logo to use in the overlay [default: google] -h, --help Print help -V, --version Print version ```

I will try to keep this outdated but you should run it for yourself just in case some command detail has changed.

Example Usage

Create a QR Code pointing to github.com and dump the image to a file called tmp.png.

sh qrg github.com -d tmp.png