ithmb-core 1.9.1

Pure Rust decoder and encoder for Apple iThmb thumbnail cache files — supports 8 pixel formats, PhotoDB containers, and 54 device profiles
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! PhotoDB/ArtworkDB — Apple's iPod/iPhone thumbnail database format.
//!
//! Binary chunk-based format (`MHFD`→`MHSD`→`MHNI` entries) supporting
//! read, write, and integrity checking of artwork databases.

/// Builder for constructing synthetic PhotoDB/ArtworkDB binaries.
pub mod builder;

/// Parser for reading PhotoDB/ArtworkDB binary data.
pub mod parser;

/// Shared type definitions (header structs, constants, helpers).
pub mod types;