A crate for encoding TIFF files with the desired IFDs and entries.
Documentation can be found here.
First, add this crate to your Cargo.toml
:
toml
[dependencies]
tiff-encoder = *
Replace * with the latest version of the crate.
Then add extern crate
to your .rs
file (note the _
instead of -
):
rust
extern crate tiff_encoder;
You can now use this crate.