qrcode-rs 2.0.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
9
10
11
12
13
14
15
16
17
//! Rendering facade.
//!
//! The pure rendering core (`Pixel`, `Canvas`, `Renderer`, string/unicode/ANSI
//! backends, and color helpers) lives in `qrcode-render` and is re-exported
//! here to preserve the 1.x `qrcode_rs::render::*` API. Feature-gated backends
//! still live in this facade crate until their dedicated crates are split out.

#[cfg(feature = "image")]
pub use qrcode_render::image;
pub use qrcode_render::{Canvas, Pixel, RenderError, RenderTemplate, Renderer, StyledPixel};
pub use qrcode_render::{ansi, colors, plugin, string, unicode};

pub mod eps;
pub mod html;
pub mod pdf;
pub mod pic;
pub mod svg;