#tiff #decode #image #decode-encode

rustiff

TIFF decoding/encoding library in Rust

3 releases

Uses old Rust 2015

0.1.2 Sep 17, 2018
0.1.1 Sep 4, 2018
0.1.0 Sep 4, 2018

#14 in #tiff

42 downloads per month

Custom license

33KB
910 lines

rustiff

TIFF decoding/encoding library for Rust.

crates.io docs.rs

Use

Put this in your Cargo.toml:

[dependencies]
rustiff = "0.1"

Then put this in your crate root:

extern crate rustiff

Example

This example shows how to read TIFF data.

extern crate rustiff;

use rustiff::{
    Decoder,
    DecodeResult,
    DecodeError,
    Image,
    ImageData,
};
use std::fs::File;

fn main() -> DecodeResult<()> {
    let f = File::open("sample.tiff")?;
    let mut decoder = Decoder::new(f)?;
    let image = decoder.image()?;
    let image_data = image.data(); // Vec<u8> or Vec<u16>

    Ok(())
}

You can get the value associated with the tag.

extern crate rustiff;

use rustiff::{
    tag,
    IFD,
    Decoder,
    DecodeResult,
    DecodeError,
};
use std::fs::File;

fn main() -> DecodeResult<()> {
    let f = File::open("sample.tiff")?;
    let mut decoder = Decoder::new(f)?;
    let ifd = decoder.ifd()?;
    let width = decoder.get_value(&ifd, tag::ImageWidth)?;
    let height = decoder.get_value(&ifd, tag::ImageLength)?;

    Ok(())
}

Dependencies

~205KB