tuv 0.1.6

Pure-Rust QR code encoder with SVG and PNG output
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Encoder module — handles mode selection and data encoding.

pub mod bits;
pub mod mode;
pub mod numeric;
pub mod alphanumeric;
pub mod byte;
pub mod kanji;
pub mod optimize;
pub mod padding;

pub use mode::{
    Mode, Encoder, char_count_bits, best_mode, best_mode_bytes, estimated_bit_length,
    estimated_bit_length_bytes, EncodeBits,
};
pub use optimize::{Optimizer, Parser, Segment, total_encoded_len};