| Crates.io | kamadak-exif |
| lib.rs | kamadak-exif |
| version | 0.6.1 |
| created_at | 2016-12-31 04:14:13.291277+00 |
| updated_at | 2024-11-06 15:22:32.903392+00 |
| description | Exif parsing library written in pure Rust |
| homepage | https://github.com/kamadak/exif-rs |
| repository | https://github.com/kamadak/exif-rs |
| max_upload_size | |
| id | 7868 |
| size | 264,471 |
This is a pure-Rust library to parse Exif data. This library parses Exif attributes in a raw Exif data block. It can also read Exif data directly from some image formats.
Supported formats are:
Add a dependency entry to your Cargo.toml. Specify "kamadak-exif" if you use crates.io. The canonical name of this crate is "exif", but it is renamed on crates.io to avoid a naming conflict.
[dependencies]
kamadak-exif = "x.y.z"
Add the following to your crate root (before Rust 2018).
extern crate exif;
Run "cargo doc" in the source directory to generate the API reference. It is also available online at https://docs.rs/kamadak-exif.
See examples directory for sample codes.
Rust 1.60 or later is required to build.