Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/igor-marinescu/qrsgen
QR Code Simple Generator
https://github.com/igor-marinescu/qrsgen
cpp qr qrcode qrcode-generator qt
Last synced: about 2 months ago
JSON representation
QR Code Simple Generator
- Host: GitHub
- URL: https://github.com/igor-marinescu/qrsgen
- Owner: igor-marinescu
- License: gpl-3.0
- Created: 2019-12-15T18:49:01.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-17T20:45:55.000Z (about 5 years ago)
- Last Synced: 2023-10-31T14:31:22.824Z (about 1 year ago)
- Topics: cpp, qr, qrcode, qrcode-generator, qt
- Language: C
- Homepage:
- Size: 3.36 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QRsGen
QR-code simple Generator
![Alt QRsGen](/resources/screenschot1.png)## What is QRsGen
QRsGen is a simple tool for generating QR-codes.
It is made in Qt and uses fukuchi/libqrencode.## Installing
The tool doesn't need to be installed.
Execute QRsGen.exe from bin folder to start it.
QRsGen doesn't modify any files/registry on local machine.
QRsGen doesn't send/receive anything to/from network.## Command line arguments
It is possible to customize QRsGen by invoking it with additional arguments:QRsGen.exe [-e ] [-c ] [-s ] [-h] [text]
Arguments:
-e | --error
Error Correction Level. Valid values for : 0 .. 3,
0 Lowest (default)
3 Highest-c | --encoding
Encoding Mode. Valid values for : 0 .. 3
0 Numeric mode
1 Alphabet-numeric mode
2 8-bit data mode (default)
3 Kanji mode-s | --sensitive
Case Sensitive On/Off. Valid values:
0 Case non-sensitive
1 Case sensitive (default)-h | --help Displays this help
text Text to be displayed as QR Code
Example:
QRsGen.exe -e 1 -c 2 -s 1 "Hello World"
Generates QR-Code from "Hello World", Error Correction Level=Medium
Encoding Mode=8-bit data, case sensitive.## Authors
Igor Marinescu - Qt UI
## License
See the [LICENSE.md](LICENSE.md) file for details.
## Acknowledgments
fukuchi - libqrencode (https://github.com/fukuchi/libqrencode)