qrcode-rs 0.3.0

QR code encoder in Rust,Generate QR Code matrices and images in RAW, PNG and SVG formats.
Documentation
1
2
3
4
5
6
7
8
use qrcode_rs::QrCode;
use qrcode_rs::render::html::Color;

fn main() {
    let code = QrCode::new(b"https://github.com/houseme/qrcode-rs").unwrap();
    let html = code.render::<Color>().build();
    println!("{html}");
}