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 parse_file
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.