tiff-encoder 0.2.1

Rust library for creating TIFF files.
Documentation

A crate for encoding TIFF files with the desired IFDs and entries.

Documentation

Documentation can be found here.

Installation

First, add this crate to your Cargo.toml:

[dependencies]
tiff-encoder = *

Replace * with the latest version of the crate.

Then add extern crate to your .rs file (note the _ instead of -):

extern crate tiff_encoder;

You can now use this crate.