DEWQ

Crates.ioDEWQ
lib.rsDEWQ
version0.0.4
created_at2025-01-15 23:36:13.579556+00
updated_at2025-01-23 21:09:38.740015+00
descriptionQR Code Generation Library
homepage
repository
max_upload_size
id1518666
size80,167
(RubenMovsesyan)

documentation

README

DEWQ QR Code Generation Library

github crates.io docs.rs

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
Commit count: 0

cargo fmt