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.
Adding DEWQ to your project is as simple as
cargo add DEWQ
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");
- Numeric Encoding
- Alphanumeric Encoding
- Byte Encoding
- Kanji (Double Byte) Encoding