5 releases
0.2.14 | Apr 30, 2023 |
---|---|
0.2.13 | Apr 4, 2023 |
0.2.12 | Mar 29, 2023 |
0.2.1 | Feb 25, 2023 |
0.2.0 | Feb 25, 2023 |
#360 in Images
927 downloads per month
Used in 2 crates
67KB
1K
SLoC
Zune core
Core primitives necessary for image manipulations
This crate contains small set of primitives
necessary for image manipulations which are shared among most zune-
family
of decoders and encoders.
Items present
Currently,it contains.
- Colorspace definitions
- Bit depth definitions.
- Decoder and encoder options
lib.rs
:
Core routines shared by all libraries
This crate provides a set of core routines shared
by the decoders and encoders under zune
umbrella
It currently contains
- A bytestream reader and writer with endian aware reads and writes
- Colorspace and bit depth information shared by images
- Image decoder and encoder options
- A simple enum type to hold image decoding results.
This library is #[no_std]
with alloc
feature needed for defining Vec
which we need for storing decoded bytes.
Features
-
no_std
: Enables#[no_std]
compilation support. -
serde
: Enables serializing of some of the data structures present in the crate
Dependencies
~250–370KB