https://github.com/monich/libaztec
Aztec code generator
https://github.com/monich/libaztec
aztec-code command-line library
Last synced: about 1 month ago
JSON representation
Aztec code generator
- Host: GitHub
- URL: https://github.com/monich/libaztec
- Owner: monich
- License: other
- Created: 2019-06-18T22:09:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-26T01:27:34.000Z (about 3 years ago)
- Last Synced: 2023-08-04T14:59:27.065Z (over 2 years ago)
- Topics: aztec-code, command-line, library
- Language: C
- Homepage:
- Size: 66.4 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Aztec encoder

Library and command line tools for generating Aztec codes.
**aztec-png**
```console
Usage:
aztec-png [OPTION...] [TEXT] PNG
Generates Aztec symbol as a PNG file.
Help Options:
-h, --help Show help options
Application Options:
-s, --scale=SCALE Scale factor [1]
-c, --correction=PERCENT Error correction [23]
-b, --border=PIXELS Border around the symbol [1]
-f, --file=FILE Encode data from FILE
```
**aztec-svg**
```console
aztec-svg [OPTION?] [TEXT] SVG
Generates Aztec symbol as an SVG file.
Help Options:
-h, --help Show help options
Application Options:
-p, --pixel=SIZE Pixel size [1px]
-c, --correction=PERCENT Error correction [23]
-b, --border=PIXELS Border around the symbol [1]
-f, --file=FILE Encode data from FILE
```
Note that the special filename `-` can be used to specify standard
input or standard output. If no text is provided on the command line,
it's read from stdin.
The library API is described [here](include/aztec_encode.h). Enjoy!