qirust 0.1.26

A simple QR code generator written in Rust using standard library.
Documentation

qirust

A Rust library for generating QR codes with customizable rendering options.

Crates.io Docs.rs License: MIT

Overview

qirust is a safe and efficient Rust library for generating QR codes, adhering to the QR Code Model 2 specification. It supports encoding text or binary data with customizable error correction levels (Low, Medium, Quartile, High), versions (1 to 40), and various output formats including console ASCII art, PNG images, SVGs, and in-memory image buffers. The library provides advanced styling options such as logo embedding, custom colors, and frame styles (square or rounded).

Features

  • Encoding Modes: Numeric, alphanumeric, byte, and ECI (Kanji mode defined but not implemented).
  • Error Correction: Four levels (Low, Medium, Quartile, High) to balance capacity and robustness.
  • Output Formats: Console output, PNG images, SVGs, and in-memory image buffers.
  • Styling Options: Embed logos, customize colors, and apply square or rounded frames.
  • Safety: Pure Rust implementation with no unsafe code, adhering to Rust’s safety guarantees.
  • Performance: Optimized for minimal memory usage with buffer-based encoding.

Installation

Add the following to your Cargo.toml:

[dependencies]
qirust = "0.1" # Replace with the latest version
image = "0.25" # Required for image processing

Modules

  • qrcode: Core QR code encoding functionality.
  • helper: Utilities for rendering QR codes in various formats.

Module: qrcode

Handles QR code encoding, supporting versions 1 to 40 and four error correction levels.

Structs

  • QrCode: Represents a QR code grid of dark and light modules.
  • QrCodeEcc: Defines error correction levels (Low, Medium, Quartile, High).
  • QrSegment: Represents a data segment (numeric, alphanumeric, byte, or ECI).
  • Version: Specifies QR code version (1–40).
  • Mask: Defines mask patterns (0–7).

Key Functions

  • QrCode::encode_text: Encodes a text string into a QR code, selecting the smallest version within the specified range.
  • QrCode::encode_binary: Encodes binary data into a QR code.
  • QrSegment::make_numeric: Creates a numeric mode segment.
  • QrSegment::make_alphanumeric: Creates an alphanumeric mode segment.
  • QrSegment::make_bytes: Creates a byte mode segment.

Example

use qirust::qrcode::{QrCode, QrCodeEcc, Version};

fn main() -> Result<(), qirust::qrcode::DataTooLong> {
    let mut outbuffer = vec![0u8; Version::MAX.buffer_len()];
    let mut tempbuffer = vec![0u8; Version::MAX.buffer_len()];

    let qr = QrCode::encode_text(
        "Hello, World!",
        &mut tempbuffer,
        &mut outbuffer,
        QrCodeEcc::Low,
        Version::MIN,
        Version::MAX,
        None,
        true,
    )?;

    println!("Version: {}", qr.version().value());
    Ok(())
}

Module: helper

Provides utilities for rendering QR codes as console output, PNG images, SVGs, or in-memory image buffers, with styling options.

Key Functions

  • print_qr: Displays a QR code in the console using ASCII characters.
  • to_svg_string: Generates an SVG string representation of a QR code.
  • qr_to_image_and_save: Saves a QR code as a PNG image.
  • frameqr_to_image_and_save: Saves a styled QR code with a logo, custom colors, and optional frames.
  • frameqr_to_svg_string: Generates an SVG string for a styled QR code with a logo.
  • generate_frameqr: Convenience function to generate a styled QR code from text.
  • generate_image: Saves a basic QR code as a PNG.
  • generate_svg_string: Generates an SVG string from text.
  • generate_image_buffer: Creates an in-memory QR code image buffer.
  • generate_frameqr_buffer: Creates an in-memory image buffer for a styled QR code with a logo.
  • mix_colors: Blends foreground and background colors for rendering.
  • encode_base64: Encodes a byte slice into a base64 string for logo embedding.
  • hex_to_rgba: Converts a hexadecimal color code to an RGBA array.
  • hex_to_rgb: Converts a hexadecimal color code to an RGB array.

Example: Styled QR Code with Logo

use qirust::{helper::generate_frameqr, qrcode::QrCodeEcc};

fn main() {
    generate_frameqr(
        "https://example.com",
        "logo.png",
        Some(QrCodeEcc::High),
        Some(6),
        Some("output"),
        Some("styled_qr"),
        Some([255, 165, 0]), // Orange
        Some(40),            // Outer frame size
        Some(10),            // Inner frame size
        Some("rounded"),     // Frame style
    ).expect("Failed to generate QR code");
}

Example: SVG Generation with Logo

use qirust::qrcode::{QrCode, QrCodeEcc, Version};
use qirust::helper::frameqr_to_svg_string;

fn main() {
    let mut outbuffer = vec![0u8; Version::MAX.buffer_len()];
    let mut tempbuffer = vec![0u8; Version::MAX.buffer_len()];
    let qr = QrCode::encode_text(
        "https://example.com",
        &mut tempbuffer,
        &mut outbuffer,
        QrCodeEcc::High,
        Version::MIN,
        Version::MAX,
        None,
        true,
    ).unwrap();

    let svg = frameqr_to_svg_string(
        qr,
        "logo.png",
        Some(6),
        Some([255, 165, 0]),
        Some(40),
        Some(10),
        Some("rounded"),
    );
    println!("{}", svg);
}

Example: In-Memory Image Buffer

use qirust::helper::generate_image_buffer;

fn main() {
    let img = generate_image_buffer("Hello, World!", None, None, None, None)
        .expect("Failed to generate image buffer");
    img.save("output/qr.png").expect("Failed to save image");
}

Error Handling

  • qrcode::DataTooLong: Indicates data exceeds the QR code’s capacity. Handle by reducing data size, increasing version, or lowering error correction.
  • image::ImageError: Occurs for image processing or file I/O errors (e.g., invalid paths).
use qirust::qrcode::{QrCode, QrCodeEcc, Version, DataTooLong};

match QrCode::encode_text(
    "Too long data",
    &mut vec![0u8; Version::MAX.buffer_len()],
    &mut vec![0u8; Version::MAX.buffer_len()],
    QrCodeEcc::Low,
    Version::MIN,
    Version::MAX,
    None,
    true,
) {
    Ok(qr) => println!("QR code generated"),
    Err(DataTooLong::SegmentTooLong) => eprintln!("Segment too long"),
    Err(DataTooLong::DataOverCapacity(datalen, capacity)) => {
        eprintln!("Data length {} exceeds capacity {}", datalen, capacity);
    }
}

Limitations

  • Kanji Mode: Defined but not fully implemented.
  • ECI Mode: Supported but requires careful handling.
  • Logo Size: Automatically resized to one-third of QR code dimensions for scannability (up to 40% for SVG).
  • File I/O: Requires valid paths and permissions for image saving.

Contributing

Contributions are welcome! Please fork the repository, create a feature branch, and submit a pull request with tests and documentation updates.

License

MIT License. See LICENSE for details.