heic 0.1.4

Pure Rust HEIC/HEIF image decoder with SIMD acceleration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! HEIF/ISOBMFF container parser
//!
//! This module parses the ISO Base Media File Format (ISOBMFF) container
//! used by HEIF/HEIC files. The container consists of nested "boxes" that
//! describe the file structure and contain image data.

mod boxes;
mod parser;

pub use boxes::{
    AuxiliaryTypeProperty, Av1DecoderConfig, CleanAperture, ColorInfo, CompressionConfig,
    ContentLightLevelBox, FourCC, HevcDecoderConfig, ImageMirror, ImageRotation,
    ImageSpatialExtents, ItemProperty, MasteringDisplayBox, Transform, UncompressedComponent,
    UncompressedConfig,
};
pub use parser::{HeifContainer, Item, ItemType, parse};