Go to file
KAMADA Ken'ichi 46510fef82 Merge a patch from kpcyrd to remove some unsafe blocks.
A part of the patch involves copying or initializing arrays, but the
performance impact should be negligible.  TryFrom will eliminate copying
when stabilized.
2019-03-26 23:17:31 +09:00
examples Replace try!() with ? 2018-04-17 23:21:40 +09:00
src The generate_write macro no longer needs type_size argument. 2019-03-26 23:05:08 +09:00
tests Add `Tag::TagName`s and deprecate `tag::TagName`s. 2017-10-12 22:55:56 +09:00
Cargo.toml Increment the version to 0.3.1. 2018-06-17 21:51:49 +09:00
README Require Rust 1.33 or later. 2019-03-17 23:34:19 +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.3"

   Add the following to your crate root.

      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.33 or later is required to build.

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

   -  Exif Version 2.31
   -  TIFF Revision 6.0