j2k-jpeg 0.6.1

JPEG inspect/decode and fallback encode support for j2k
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: Apache-2.0

//! JPEG marker-level parser. Walks the byte stream until the end of the
//! headers (the SOS marker) and populates [`crate::info::Info`] plus the
//! parsed DQT / DHT / DRI / APP14 / SOS state. See spec Section 3 phase 1.

pub(crate) mod adobe_app14;
pub(crate) mod header;
pub(crate) mod markers;
pub(crate) mod scan;
pub(crate) mod sof;
pub(crate) mod tables;