Go to file
KAMADA Ken'ichi 2b663f35f3 Rename Tag.value() to Tag.number().
The purpose of this change is to avoid confusion with field values.
The TIFF standard basically just calls it as a "tag",
but "tag number" is used a few times.
2017-03-24 23:32:12 +09:00
src Rename Tag.value() to Tag.number(). 2017-03-24 23:32:12 +09:00
tests Parse a TIFF image as well as a JPEG in the main example. 2017-03-05 08:19:37 +09:00
Cargo.toml Add categories in Cargo.toml. 2017-03-22 19:45:38 +09:00
README Cleanup imports and require Rust 1.15. 2017-03-24 23:09:22 +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.  Specifying at least two
   numbers is recommended because, during the major version 0, the
   minor will be bumped to indicate backwards-incompatible changes.

      [dependencies]
      exif = "0.1.3"

   Add the following to your crate root.

      extern crate exif;

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

   Rust 1.15 or later is required to build.

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

   -  Exif Version 2.31
   -  TIFF Revision 6.0