TomKa
20th of May 2003 (Tue), 05:45
Hello from Italy,
I'm a newbie in EE, after a search about galleries I installed EE this morning without problems.
So here are a few questions:
I archive my pics with FotoStation and put the necessary IPTC-tags into the jpeg files. Is it possible in EE to extract the IPTC-tags to insert them fully automated into the description and the keyword etc. ?
Here are some links about handling these data in PHP (I'm no PHP geek):
IPTC Info Extractor Perl Module
http://multipart-mixed.com/photo/iptc.html
IPTC parse:
http://www.php.net/manual/tr/function.iptcparse.php
quote:_____________________________
Sebastian Delmont has written a new class to handle JPEG metadata including EXIF and IPTC [1].
require_once 'Image/JPEG.php';
$jpeg =& new JPEGInfo('images/photos001.jpg');
echo $jpeg->getExifField("ApertureValue");
echo $jpeg->getIPTCField("Caption");
$jpeg->setIPTCField("Byline", "Sebastian Delmont");
$jpeg->save("images/photos001-bis.jpg");
$info = $jpeg->getBasicInfo();
echo $info['Width'] . "x" . $info['Height'];
[1] http://www.zonageek.com/tmp/JPEG.php.txt
[2] http://cvs.php.net/cvs.php/pear/Image_IPTC/
quote_end__________________________
Another fine feature would be the whole list of the searchable keywords (but this can be done also with a popup window and a small list) ?
I'm a newbie in EE, after a search about galleries I installed EE this morning without problems.
So here are a few questions:
I archive my pics with FotoStation and put the necessary IPTC-tags into the jpeg files. Is it possible in EE to extract the IPTC-tags to insert them fully automated into the description and the keyword etc. ?
Here are some links about handling these data in PHP (I'm no PHP geek):
IPTC Info Extractor Perl Module
http://multipart-mixed.com/photo/iptc.html
IPTC parse:
http://www.php.net/manual/tr/function.iptcparse.php
quote:_____________________________
Sebastian Delmont has written a new class to handle JPEG metadata including EXIF and IPTC [1].
require_once 'Image/JPEG.php';
$jpeg =& new JPEGInfo('images/photos001.jpg');
echo $jpeg->getExifField("ApertureValue");
echo $jpeg->getIPTCField("Caption");
$jpeg->setIPTCField("Byline", "Sebastian Delmont");
$jpeg->save("images/photos001-bis.jpg");
$info = $jpeg->getBasicInfo();
echo $info['Width'] . "x" . $info['Height'];
[1] http://www.zonageek.com/tmp/JPEG.php.txt
[2] http://cvs.php.net/cvs.php/pear/Image_IPTC/
quote_end__________________________
Another fine feature would be the whole list of the searchable keywords (but this can be done also with a popup window and a small list) ?