2024-09-01 14:31:54 +01:00
2019-05-08 23:41:39 +03:00
2019-05-08 23:41:39 +03:00
2023-07-30 22:44:41 +02:00
2016-07-18 13:20:57 +03:00
2019-05-08 23:41:39 +03:00
2019-05-08 23:41:39 +03:00
2019-05-08 23:41:39 +03:00

imghdr

Library that determines the type of image contained in a file or byte stream, basically clone of the Python imghdr module.

Latest Version Latest Version Rustc Version 1.31+ Travis Build Status Apache 2.0 OR MIT licensed

Examples

Check the file directly:

# extern crate imghdr;
# fn main() {
match imghdr::from_file("./tests/images/example.png") {
    Ok(Some(imghdr::Type::Png)) => println!("Yep, it is a PNG"),
    Ok(..) => println!("Nope, it is definitely not a PNG"),
    Err(e) => println!("Some error happened: {:?}", e),
}
# }

Or check the bytes stream:

# extern crate imghdr;
# use std::fs::File;
# use std::io::{self, Read};
#
# fn main() -> io::Result<()> {
let mut file = File::open("./tests/images/example.jpeg")?;
let mut content: Vec<u8> = vec![];
file.read_to_end(&mut content)?;

match imghdr::from_bytes(&content) {
    Some(imghdr::Type::Jpeg) => println!("And this is a Jpeg"),
    _ => println!("Can a Png, Bmp or other file format"),
}

# Ok(())
# }
S
Description
Library that determines the type of image contained in a file or byte stream
Readme 156 KiB
Languages
Rust 68.6%
C 31.4%