| CARVIEW |
qr-imager: Library to generate images.
Downloads
- qr-imager-2.0.0.2.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
| Versions [RSS] | 0.1.0.0, 0.1.0.1, 0.1.2.0, 0.1.2.1, 0.2.0.0, 0.2.1.0, 0.2.1.1, 0.2.1.2, 0.2.1.3, 0.2.2.0, 1.0.0.0, 1.0.0.1, 1.0.0.2, 1.0.0.3, 1.0.1.0, 1.0.1.1, 1.0.1.2, 1.0.1.3, 1.0.1.5, 1.0.1.6, 1.0.1.7, 1.0.1.8, 2.0.0.0, 2.0.0.1, 2.0.0.2 |
|---|---|
| Dependencies | base (>=4.8 && <5), binary, bytestring, cryptonite, directory, haskell-qrencode, jose-jwt, JuicyPixels, microlens, process, split, vector [details] |
| License | BSD-3-Clause |
| Copyright | Copyright: (c) 2016-2018 Vanessa McHale |
| Author | Vanessa McHale |
| Maintainer | vamchale@gmail.com |
| Uploaded | by vmchale at 2018-09-25T05:20:10Z |
| Category | Data, QR, Image |
| Home page | https://github.com/vmchale/QRImager#readme |
| Source repo | head: git clone https://github.com/vmchale/QR-Writer |
| Distributions | |
| Reverse Dependencies | 1 direct, 0 indirect [details] |
| Downloads | 15140 total (142 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2018-09-25 [all 1 reports] |
Readme for qr-imager-2.0.0.2
[back to package description]QR Imager Library
This is a library to generate .png files from QR codes.
Dependencies
The library depends on the C library libqrencode which you will need to install separately, as well as the command-line tool Zbar from here. You should also be able to get them from your distro.
Library
The library can be used via the exported functions createQRCode, byteStringToQR and readQRString, plus their signed counterparts. The first two export to ".png" while the third can be used on any image format Zbar supports.
The functions bsToImg and objToImg output JuicyPixels images for your further manipulation.
Use
Compiling will generate an executable called qrpipe which reads from stdin and outputs a file as the second argument, e.g.
echo 'My name is: Vanessa" | qrpipe write -v "nametag.png"
To then read the nametag:
qrpipe read "nametag.png"