Library for Parsing EXIF data/metadata from image files
From the terminal you can run cargo run
with a path to a file:
cargo run './path/to/file.jpg
To print out some basic EXIF data. For now this will just give the Tag ID and value, the ID can then be looked up on an EXIF Tag Name List to see what it corresponds to
The library should work with any file formats that store EXIF data
The Library exposed via the exif
module will parse EXIF data from the provided file's bytes using:
let exif = exif::parse(file); // file is `&[u8]`
Implementation references and guidance for image formats from: