qrcode-core: QR code library in pure Haskell

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Please see the README on GitHub at https://github.com/alexkazik/qrcode/qrcode-core#readme


[Skip to Readme]

Properties

Versions 0.8.0, 0.8.0, 0.9.0, 0.9.1, 0.9.2, 0.9.3, 0.9.4, 0.9.5, 0.9.6, 0.9.7, 0.9.8, 0.9.9
Change log ChangeLog.md
Dependencies base (>=4.8.2.0 && <5), binary (>=0.7.5.0 && <0.9), bytestring (>=0.10.6.0 && <0.11), case-insensitive (>=1.2.0.5 && <1.3), containers (>=0.5.6.2 && <0.7), dlist (>=0.7.1.2 && <0.9), primitive (>=0.6.1.0 && <0.7), semigroups, text (>=1.2.2.0 && <1.3), vector (>=0.11.0.0 && <0.13) [details]
License MIT
Copyright 2018 ALeX Kazik
Author ALeX Kazik
Maintainer alex@kazik.de
Category codec
Home page https://github.com/alexkazik/qrcode#readme
Bug tracker https://github.com/alexkazik/qrcode/issues
Source repo head: git clone https://github.com/alexkazik/qrcode
Uploaded by alexkazik at 2019-01-05T19:01:38Z

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for qrcode-core-0.8.0

[back to package description]

qrcode

QR code library in pure Haskell

qrcode-core

Basic functionality to create a QRCode.

All modes are supported:

There are function to create those specifically and an auto-detect.

The module Codec.QRCode has functions which creates an image out of the input.

The module Codec.QRCode.Intermediate has functions to create segments of a QRCode, join them together and finally create the image.

The core of the resulting image is an Vector of Bools, each element describing a module ("pixel") where False is white and True is black.

thanks

Project Nayuki for https://github.com/nayuki/QR-Code-generator, which is the foundation of this package.