-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added instructions for QR logo generation
- Loading branch information
Showing
9 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## Logo | ||
|
||
The logos are embedded bitmap images inside QR codes that contain a URL to the website. | ||
|
||
### How to make embedded images in QR codes | ||
|
||
* Using [GIMP](https://www.gimp.org/), create a black/white/transparent pixel graphic of the image you want to embed (`01_pixel_*.xcf`) | ||
* Export the graphic to a gif (`02_pixel_*.gif`) | ||
* Using [qr-vanity](https://github.com/mzollin/qr-vanity), generate QR codes for "https://vax.codes" with the image embedded in it | ||
* `sudo apt install git python3-dev python3-setuptools python3-pip libzbar0 libzbar-dev` | ||
* `virtualenv -p python3.7 venv` | ||
* `source venv/bin/activate` | ||
* `git clone https://github.com/mzollin/qr-vanity.git` | ||
* `cd qr-vanity` | ||
* `pip3 install -r requirements.txt` | ||
* `./qrvanity.py /path/to/pixel_vax-codes.gif "https://vax.codes"` (will generate possible QR code png images) | ||
* Select whichever output image you think looks best (`03_output_*.png`) | ||
* Optimize via [pngcrush.com](https://pngcrush.com) (`04_qr_*.png`) | ||
|