FileWiki

NAME

FileWiki::Plugin::EXIF - EXIF variable provider plugin for FileWiki

SYNOPSIS

PLUGINS=EXIF

DESCRIPTION

Provides page variables from EXIF data extracted from source files, using Image::ExifTool.

CONFIGURATION VARIABLES

EXIF_SIDECAR_POSTFIX

Load additional EXIF information from sidecar files. Several file postfixes can be specified, separated by colon (":").

Example:

EXIF_SIDECAR_POSTFIX  .xmp:.XMP

This will load EXIF information from "myfile.jpg.xmp" in addition to the EXIF information in "myfile.jpg".

EXIF_TIME_FORMAT

Time format used for for printing date/time values in EXIF_INFO hash and EXIF_TIME variable. Corresponds to the C library routines "strftime" and "ctime". Defaults to TIME_FORMAT page variable, which again defaults to "%C".

EXIF_DISABLE_WARNINGS

Disable warnings generated when EXIF data is missing (especially on missing EXIF_TIME)

VARIABLE PRESETS

EXIF_INFO

Hash of all EXIF information provided by the source image. Refer to the manual of Image::ExifTool for more informations about the EXIF keys.

EXIF_INFO={ exif_key => { desc  => "Key description",
                          value => "EXIF value"
                          print => "EXIF value, human readable",
                          raw   => "raw EXIF value"
                        }
            exif_key...
          }

EXIF_TIME

Date/Time extracted from EXIF "DateTimeOriginal" key, formatted using EXIF_TIME_FORMAT.

AUTHOR

Axel Burri <axel@tty0.ch>

COPYRIGHT AND LICENSE

Copyright (c) 2011-2019 Axel Burri. All rights reserved.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.