Hi
I need information about images Medata details with in the tables.
Thanks
Hi
I need information about images Medata details with in the tables.
Thanks
Perhaps say a bit more. Image editing software like Photoshop revels an image’s metadata.
Yes. I need this information in to table.
I guess you could use a backend language to extract the data. E.g. PHP: http://www.php.net/manual/en/function.exif-read-data.php
Hi all
Below mentioned code i can get the result IPTC Details. But i dont want IPTC or Exif details. Plase find the attached screenshots for your reference.
<?php $picinfo = array();
getimagesize('upload/files/181751756.jpg', $picinfo);
echo "<pre>";
print_r(array_keys($picinfo));
echo "</pre>";
if(isset($picinfo['APP13']))
{ $iptc = iptcparse($picinfo['APP13']);
}
if(isset($picinfo['APP13']))
{
$iptc = iptcparse($picinfo["APP13"]);
if (is_array($iptc)) {
$description = $iptc['2#105'][0];
$time = $iptc['2#055'][0];
$year = substr($time, 0, 4);
$month = substr($time, 4, 2);
$day = substr($time, -2);
$datetaken = date('l F jS Y', mktime(0, 0, 0, $month, $day, $year));
$city = $iptc["2#090"][0];
$country = $iptc["2#101"][0];
$creator = $iptc["2#080"][0];
}
}
print_r($description);
echo "<pre>";
print_r($description);
echo "</pre>";
?>
I can get the result for this code.
But i need details for custom metadata. Please see the below attached screen shot.
Please help me for this.