3 releases (breaking)
0.4.0 | Mar 24, 2025 |
---|---|
0.3.0 | Feb 3, 2022 |
0.2.0 | Oct 3, 2021 |
#162 in Parser implementations
89,289 downloads per month
Used in 131 crates
(7 directly)
41KB
878 lines
ktx2
Parser for the ktx2 texture container format.
Features
- Async reading
- Parsing
- Validating
- Data format description
- Key/value data
Example
// Crate instance of reader. This validates the header
let mut reader = ktx2::Reader::new(file).expect("Can't create reader"); // Crate instance of reader.
// Get general texture information.
let header = reader.header();
// Read iterator over slices of each mipmap level.
let levels = reader.levels().collect::<Vec<_>>();
MSRV
The minimum supported Rust version is 1.56. MSRV bumps are treated as breaking changes.
License: Apache-2.0
Dependencies
~94KB