About

Metadata

  • Last updated , by alexkazik
  • License MIT
  • Maintained by: alex@kazik.de

  • Lottery factor: 1

Links

Installation

Tested Compilers

  1. 9.4.5
  2. 9.4.4
  3. 8.10.7
  4. 8.10.1
  5. 8.8.3
  6. 8.8.2
  7. 8.6.5
  8. 8.6.4
  9. 8.6.3
  10. 8.4.4
  11. 8.4.3
  12. 8.2.2
  13. 8.0.2
  14. 7.10.3

Readme

qrcode

QR code library in pure Haskell

qrcode-core

Basic functionality to create a QRCode.

All modes are supported:

  • Numeric (digits only)
  • Alphanumeric (digits, letters and some other chars)
  • Binary / Text (ISO 8859-1 and UTF-8)
  • Kanji

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.