gufo-exif

Crates.iogufo-exif
lib.rsgufo-exif
version0.1.0-alpha
sourcesrc
created_at2024-06-27 15:48:31.022174
updated_at2024-06-27 15:48:31.022174
descriptionExif loading and editing
homepage
repository
max_upload_size
id1285906
size10,270,647
Sophie Herold (sophie-h)

documentation

README

gufo-exif

Gufo exif is a native Rust crate to read and edit EXIF metadata.

This crate is specifically focused on editing EXIF data while preserving the existing structure as much as possible. Every edit operation tries to only updates the raw data as much as necessary.

Usage

The high level API in Exif provides simple access to commonly used metadata.

let data = std::fs::read("tests/example.jpg").unwrap();
let jpeg = gufo_jpeg::Jpeg::new(&data);
let raw_exif = jpeg.exif_data().next().unwrap().to_vec();

eprintln!("{}", String::from_utf8_lossy(&raw_exif));

let exif = gufo_exif::Exif::new(raw_exif).unwrap();
println!("Camera Model: {}", exif.model().unwrap());

This library also exposes lower level access to the Exif data. More details can be found in the internal documentation.

Existing Crates

Crate Info Comment
exif-rs Native, read only Abandoned
exif-sys FFI bindings for libexif Abandoned
exif Save binding for exif-sys Abandoned
gexiv2 FFI bindings for gexiv2
imagemeta Native Abandoned
kamadak-exif Native, experimental writing Quasi standard
little_exif Native
peck-exif Native, read only
rexif Native
rexiv2 Save bindings for gexiv2

Relevant Standards

Commit count: 0

cargo fmt