exif-rs/src/lib.rs

123 lines
4.4 KiB
Rust
Raw Normal View History

//
// Copyright (c) 2016 KAMADA Ken'ichi.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
// OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
// SUCH DAMAGE.
//
2017-03-04 18:18:53 -05:00
//! 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
2020-12-14 07:12:19 -05:00
//! including TIFF, JPEG, HEIF, PNG, and WebP.
2016-12-18 09:38:11 -05:00
//!
//! # Examples
//!
//! To parse Exif attributes in an image file,
//! use `Reader::read_from_container`.
//! To convert a field value to a string, use `Field::display_value`.
2016-12-18 09:38:11 -05:00
//!
//! ```
//! # fn main() -> Result<(), Box<dyn std::error::Error>> {
//! for path in &["tests/exif.jpg", "tests/exif.tif"] {
//! let file = std::fs::File::open(path)?;
//! let mut bufreader = std::io::BufReader::new(&file);
//! let exifreader = exif::Reader::new();
//! let exif = exifreader.read_from_container(&mut bufreader)?;
2020-01-20 08:05:06 -05:00
//! for f in exif.fields() {
2018-01-13 09:33:45 -05:00
//! println!("{} {} {}",
2020-01-20 08:05:06 -05:00
//! f.tag, f.ifd_num, f.display_value().with_unit(&exif));
//! }
2016-12-18 09:38:11 -05:00
//! }
//! # Ok(()) }
2016-12-18 09:38:11 -05:00
//! ```
//!
//! To process a field value programmatically in your application,
//! use the value itself (associated value of enum `Value`)
//! rather than a stringified one.
//!
//! ```
//! # use exif::{In, Reader, Tag, Value};
//! # let file = std::fs::File::open("tests/exif.tif").unwrap();
//! # let exif = Reader::new().read_from_container(
//! # &mut std::io::BufReader::new(&file)).unwrap();
//! # macro_rules! eprintln { ($($tt:tt)*) => (panic!($($tt)*)) }
2021-03-21 04:56:37 -04:00
//! // Orientation is stored as a SHORT. You could match `orientation.value`
//! // against `Value::Short`, but the standard recommends that readers
//! // should accept BYTE, SHORT, or LONG values for any unsigned integer
//! // field. `Value::get_uint` is provided for that purpose.
//! match exif.get_field(Tag::Orientation, In::PRIMARY) {
//! Some(orientation) =>
//! match orientation.value.get_uint(0) {
2021-03-21 04:56:37 -04:00
//! Some(v @ 1..=8) => println!("Orientation {}", v),
//! _ => eprintln!("Orientation value is broken"),
//! },
//! None => eprintln!("Orientation tag is missing"),
//! }
//! // XResolution is stored as a RATIONAL.
//! match exif.get_field(Tag::XResolution, In::PRIMARY) {
//! Some(xres) =>
//! match xres.value {
2021-03-21 04:56:37 -04:00
//! Value::Rational(ref v) if !v.is_empty() =>
//! println!("XResolution {}", v[0]),
//! _ => eprintln!("XResolution value is broken"),
//! },
//! None => eprintln!("XResolution tag is missing"),
//! }
//! ```
//!
//! # Upgrade Guide
//!
//! See the [upgrade guide](doc/upgrade/index.html) for API incompatibilities.
pub use error::Error;
pub use jpeg::get_exif_attr as get_exif_attr_from_jpeg;
2020-01-20 08:05:06 -05:00
pub use reader::{Exif, Reader};
2019-03-31 10:50:04 -04:00
pub use tag::{Context, Tag};
pub use tiff::parse_exif_compat03 as parse_exif;
2021-05-29 02:08:22 -04:00
pub use tiff::{DateTime, Field, In};
2016-10-26 09:46:20 -04:00
pub use value::Value;
2016-11-19 06:28:17 -05:00
pub use value::{Rational, SRational};
2018-01-13 09:33:45 -05:00
/// The interfaces in this module are experimental and unstable.
pub mod experimental {
2019-04-01 08:11:54 -04:00
pub use crate::writer::Writer;
}
2016-10-08 20:11:10 -04:00
#[cfg(test)]
#[macro_use]
mod tmacro;
pub mod doc;
2016-10-26 09:46:20 -04:00
mod endian;
mod error;
mod isobmff;
mod jpeg;
2020-08-03 09:57:50 -04:00
mod png;
mod reader;
2019-03-31 10:50:04 -04:00
mod tag;
2016-10-26 09:46:20 -04:00
mod tiff;
mod util;
2016-10-26 09:46:20 -04:00
mod value;
2020-12-14 07:12:19 -05:00
mod webp;
mod writer;