wml2 0.0.23

Pure Rust multi-format image decoding and encoding library supporting JPEG, PNG, GIF, WebP, TIFF and PC-98 legacy formats (MAG, MAKI, PI, PIC)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! TIFF format support, including EXIF-oriented metadata parsing.

#[cfg(feature = "tiff")]
pub mod decoder;
#[cfg(feature = "tiff")]
pub mod encoder;
#[cfg(feature = "exif")]
pub mod header;
#[cfg(feature = "exif")]
pub mod tags;
#[cfg(feature = "exif")]
pub(crate) mod util;
#[cfg(feature = "tiff")]
pub mod warning;