Getting IPTC data
Posted: 2008-01-23T06:19:55-07:00
Hi
I want to get the IPTC data like:
but how do I get it in php?
Does not work?!
Daniel
I want to get the IPTC data like:
Code: Select all
identify -format "%[IPTC:2:120]" filename.jpg
but how do I get it in php?
Code: Select all
$im = new Imagick($filename);
$im->getImageFormat() ;
echo $im;
Daniel