Gallery Exif

gary.moncrieff
gary.moncrieff
@garymoncrieff
9 years ago
865 posts
Hey Guys

Happened to notice today that this module was now available to purchase outside of the bundle. Is there any documentation on using this?
updated by @garymoncrieff: 08/06/15 08:35:03AM
gary.moncrieff
gary.moncrieff
@garymoncrieff
9 years ago
865 posts
I am assuming this will dump additional info into the datastore, the only one I am seeing so far is the gallery_image_exif_filedatetime.

Will this also show image resolution, camera it was taken on etc?
michael
@michael
9 years ago
7,715 posts
Looking at the modules code, it checks to see if the php function exif_read_data() exists, so that will need to be available on your server.

If it is, the module tries to read the exif data and adds these keys to your datastore if they are set:
* 'FileDateTime'
* 'ImageDescription'
* 'Make'
* 'Model'
* 'ExposureTime'
* 'FNumber'
* 'ISOSpeedRatings'
* 'ShutterSpeedValue'
* 'ApertureValue'
* 'BrightnessValue'
* 'FocalLength'

From all .jpg, .jpeg, .tiff files.

It also adds date ranges to the search items function:
* exif_year
* exif_month
* exif_day

The System check will throw a warning and a link to: http://php.net/manual/en/book.exif.php

if
Quote: EXIF Image functions are not installed in PHP

Tags