#exif #metadata #tags #gps #ifd

bin+lib rexif

RExif is a native Rust crate, written to extract EXIF data from JPEG and TIFF images

10 releases

0.7.4 Jul 14, 2024
0.7.3 May 14, 2021
0.5.3 May 9, 2021
0.5.1 Oct 31, 2020
0.3.1 Nov 9, 2015

#93 in Images

Download history 1027/week @ 2024-07-25 1099/week @ 2024-08-01 1250/week @ 2024-08-08 34063/week @ 2024-08-15 35797/week @ 2024-08-22 16300/week @ 2024-08-29 28421/week @ 2024-09-05 28454/week @ 2024-09-12 27514/week @ 2024-09-19 29997/week @ 2024-09-26 28338/week @ 2024-10-03 20790/week @ 2024-10-10 26645/week @ 2024-10-17 29418/week @ 2024-10-24 34696/week @ 2024-10-31 23276/week @ 2024-11-07

118,849 downloads per month
Used in 4 crates

MIT license

105KB
2.5K SLoC

rexif

RExif is a native Rust crate, written to extract EXIF data from JPEG and TIFF images.

It can be used as a library, or as a command-line tool. The sample binary called 'rexiftool' accepts files as arguments and prints the EXIF data. It gives a rough idea on how to use the crate.

Requirements

  • Latest stable Rust version from rustup.

Example

match rexif::parse_file(&file_name) {
    Ok(exif) => {
        println!("{} {} exif entries: {}", file_name,
            exif.mime, exif.entries.len());

        for entry in &exif.entries {
            println!("    {}: {}",
                    entry.tag,
                    entry.value_more_readable);
        }
    },
    Err(e) => {
        eprintln!("Error in {}: {} {}", &file_name,
            Error::description(&e), e.extra).unwrap();
    }
}

The src/main.rs file is a good starting point to learn how to use the crate, then take a look into the ExifEntry struct.

Dependencies

~465KB