Go to file
KAMADA Ken'ichi faefc75601 Use iter() instead of into_iter() where appropriate. 2020-01-08 22:52:44 +09:00
examples Do not reference the raw buffer from Value and Field. 2019-12-14 21:57:35 +09:00
src Use iter() instead of into_iter() where appropriate. 2020-01-08 22:52:44 +09:00
tests Change Reader::fields() to return an iterator instead of a slice. 2019-12-14 21:57:56 +09:00
Cargo.toml Increment the version to 0.4. 2019-12-22 22:28:48 +09:00
README Increment the version to 0.4. 2019-12-22 22:28:48 +09:00

README

Exif parsing library written in pure Rust
-----------------------------------------

   This is a pure-Rust library to parse Exif data.
   This library can parse TIFF and JPEG images and extract Exif
   attributes.

Usage
-----

   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 = "0.4"

   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.

Dependencies
------------

   Rust 1.40 or later is required to build.

Specifications
--------------

   -  Exif Version 2.31
   -  TIFF Revision 6.0