labelize 1.1.0

Fast ZPL & EPL label parser and renderer — convert label data to PNG/PDF. Open-source Labelary alternative.
Documentation
1
2
3
4
5
6
7
8
use super::label_element::LabelElement;

#[derive(Clone, Debug)]
pub struct LabelInfo {
    pub print_width: i32,
    pub inverted: bool,
    pub elements: Vec<LabelElement>,
}