DEWQ 0.0.4

QR Code Generation Library
Documentation
  • Coverage
  • 87.5%
    7 out of 8 items documented3 out of 3 items with examples
  • Size
  • Source code size: 79.7 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.16 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • RubenMovsesyan

DEWQ QR Code Generation Library

DEWQ (Denso Wave QR Code Generator) is a QR Code generation library for rust designed to parse an input string with a given error correction level and generate a bitmap of the qr code.

Getting Started

Adding DEWQ to your project is as simple as

cargo add DEWQ

Usage Examples

use qr_code::*;

let qr_code = create_qr_code("HELLO, WORLD!", ErrorCorrectionLevel::Q);
println!("{}", qr_code);

or you can save the bitmap to a file:

use qr_code::*;

create_qr_code("HELLO, WORLD!", ErrorCorrectionLevel::Q).save_to_file("./qrcode.bmp");

Features

  • Numeric Encoding
  • Alphanumeric Encoding
  • Byte Encoding
  • Kanji (Double Byte) Encoding