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
pub mod assets;
pub mod barcodes;
pub mod drawers;
pub mod elements;
pub mod encodings;
pub mod error;
pub mod hex;
pub mod images;
pub mod parsers;

pub use drawers::renderer::Renderer;
pub use elements::drawer_options::DrawerOptions;
pub use elements::label_info::LabelInfo;
pub use error::LabelizeError;
pub use images::monochrome::encode_png;
pub use images::pdf::encode_pdf;
pub use parsers::epl_parser::EplParser;
pub use parsers::zpl_parser::ZplParser;