labelize 0.4.0

Fast Rust engine to parse ZPL & EPL label data and render to PNG/PDF. CLI, HTTP microservice, or library. Open-source Labelary alternative.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod monochrome;
pub mod pdf;
pub mod reverse_print;
pub mod scaled;

use image::Rgba;

pub const COLOR_BLACK: Rgba<u8> = Rgba([0, 0, 0, 255]);
pub const COLOR_WHITE: Rgba<u8> = Rgba([255, 255, 255, 255]);
pub const COLOR_TRANSPARENT: Rgba<u8> = Rgba([0, 0, 0, 0]);