Skip to main content

bnto_encode/
lib.rs

1// bnto-encode — Shared image format detection and encoding.
2//
3// Extracted from bnto-image so that both bnto-image and bnto-vector can
4// encode raster output without circular dependencies.
5
6pub mod encode;
7pub mod format;
8
9pub use encode::encode_image;
10pub use format::ImageFormat;