Skip to main content

tiff_core/
lib.rs

1//! Shared TIFF/BigTIFF types used by both `tiff-reader` and `tiff-writer`.
2//!
3//! This crate provides the foundational types for TIFF file manipulation:
4//! byte order, tag types, tag values, sample traits, raster layout,
5//! and well-known constants and enums.
6
7pub mod byte_order;
8pub mod constants;
9pub mod layout;
10pub mod sample;
11pub mod tag;
12
13pub use byte_order::ByteOrder;
14pub use constants::*;
15pub use layout::RasterLayout;
16pub use sample::TiffSample;
17pub use tag::{Tag, TagType, TagValue};