Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
A safe Rust wrapper aroung libexif.
Libexif is a C library for extracting EXIF data from picture files. This crate contains a safe
wrapper around libexif. This crate also exposes unsafe rust bindings for libexif through the [bindings] module.
The libexif static library will be linked statically during build time. Libexif needs to be
installed to build the bindings. The bindings are generated using bindgen. By default, the
libexif static library is searched using pkg-config. To manually give a file path to the
libexif.a file, set the LIBEXIF_STATIC_LIBRARY_PATH environment variable during build time.
Example
use ;
Extracting maker notes
In addition to standardized EXIF tags, most camera manufacturers use the maker note exif tag to store useful information about the
photo. Maker notes are specific to the camera manufacturer. Note that libexif may not be able
to decode all maker note tags.
use ;
Installing libexif
|
&&
Libexif is only required during build time, as it is linked statically.
Libexif is licensed under the LGPL-2.1 license
This crate is licensed under the Apache-2.0 license.