I have posted a topic on this last year:
https://forum.photo.gallery/viewtopic.p ... ght=#12474
Hello
Additionally to the ImageDescription (description for the image) I would like to have DocumentName (title for the image) available in the ivExifParser.class.php
something like this:
Code:
...
'ImageTitle',
...
/**
* Format ImageTitle field
*
* @param array $filtered
* @param array $exifData
*/
function ImageTitle(&$filtered, $exifData)
{
if (isset($exifData['DocumentName'])) {
$imagetitle= trim($exifData['DocumentName']);
if (!empty($imagetitle)) {
$filtered['Image Title'] = $imagetitle;
}
}
}
Since I have copied the IPTC value [ip-object] to the EXIF value [doc-name] this would really be icing on the cake of V2
Thanks
wonga
BTW: is it possible to show the "Folder description" on the thumbnail and/or the image page somewhere at a fixed position?
If okay with you I can also include the whole ivExifParser.class.php. This would exactly show what I've done.
As an example image you can take following images:
http://www.hirst.ch/content/09%20Ferien ... %20026.jpg
http://www.hirst.ch/content/08%20Ausflu ... %20034.jpg
FYI: I do still have quite some troubles with special characters such as à¤, à¶, ༠etc. Is the anything which I can do that my gallery supports those an other special characters?
Cheers, wonga