.. | ||
benches | ||
examples | ||
src | ||
tests | ||
.cargo-checksum.json | ||
appveyor.yml | ||
Cargo.lock | ||
Cargo.toml | ||
CHANGELOG.md | ||
LICENSE-APACHE | ||
LICENSE-MIT | ||
README.md | ||
rust-toolchain |
jpeg-decoder
A Rust library for decoding JPEGs.
Example
Cargo.toml:
[dependencies]
jpeg-decoder = "0.2"
main.rs:
extern crate jpeg_decoder as jpeg;
use std::fs::File;
use std::io::BufReader;
fn main() {
let file = File::open("hello_world.jpg").expect("failed to open file");
let mut decoder = jpeg::Decoder::new(BufReader::new(file));
let pixels = decoder.decode().expect("failed to decode image");
let metadata = decoder.info().unwrap();
}
Requirements
This crate compiles with rust >= 1.48. Minimum Supported Rust Version:
- All releases
0.1.*
compile with rust >= 1.36. - The releases
0.2.*
may bump Rust Version requirements (TBD).