| Crates.io | DEWQ |
| lib.rs | DEWQ |
| version | 0.0.4 |
| created_at | 2025-01-15 23:36:13.579556+00 |
| updated_at | 2025-01-23 21:09:38.740015+00 |
| description | QR Code Generation Library |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1518666 |
| size | 80,167 |
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");