labelize 0.2.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
11
12
13
14
15
16
17
18
use super::field_orientation::FieldOrientation;
use super::label_position::LabelPosition;
use super::reverse_print::ReversePrint;

#[derive(Clone, Debug)]
pub struct BarcodeAztec {
    pub orientation: FieldOrientation,
    pub magnification: i32,
    pub size: i32,
}

#[derive(Clone, Debug)]
pub struct BarcodeAztecWithData {
    pub reverse_print: ReversePrint,
    pub barcode: BarcodeAztec,
    pub position: LabelPosition,
    pub data: String,
}