Go to file
KAMADA Ken'ichi 2ffa449d9d Support displaying a value with its unit.
- Field::display_value and DisplayValue::with_unit were introduced.
- The string "centimeter" was changed to "cm" for consistency
  with "m", "mm", and "km".
- F-number was changed to be prefixed by "f/" only when with_unit() is
  called, though it is actually not a unit.
2019-04-07 21:11:14 +09:00
examples Support displaying a value with its unit. 2019-04-07 21:11:14 +09:00
src Support displaying a value with its unit. 2019-04-07 21:11:14 +09:00
tests Support displaying a value with its unit. 2019-04-07 21:11:14 +09:00
Cargo.toml Migrate to Rust 2018. 2019-04-01 21:11:54 +09:00
README Migrate to Rust 2018. 2019-04-01 21:11:54 +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 (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.33 or later is required to build.

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

   -  Exif Version 2.31
   -  TIFF Revision 6.0