Jump to content

read_exif_data Question


Skipjackrick

Recommended Posts

So, I am trying to get the exif data to be displayed under each image I have saved.  The image information is stored on the DB but i can't seem to figure out how to get this to work dynamically.

 

Any Ideas?

 

This is what I've got but obviously it doesn't work.

<?php

$directory = $_SERVER['DOCUMENT_ROOT'];

$query="SELECT
	image
FROM
	photos
ORDER BY
	image_id DESC";

$result = mysql_query($query) or die(mysql_error());

while($row = mysql_fetch_array($result))
{
$image = $row['image'];

$kayakwars_details .=<<<EOD
<tr>
	<td><img src='submitted_pics/$image'  alt='$image' /><br />
        $exif_data = exif_read_data ('' . $directory . '/submitted_pics/$image');
        $emake =$exif_data['Make'];
        $emodel = $exif_data['Model'];
        $eexposuretime = $exif_data['ExposureTime'];
        $efnumber = $exif_data['FNumber'];
        $eiso = $exif_data['ISOSpeedRatings'];
        $edate = $exif_data['DateTime'];
        echo "Camera: $emake <br />Model: $emodel <br />Exposure: $eexposuretime <br />Focal Length: $efnumber <br />ISO: $eiso <br />Date and Time: $edate ";

	</td>
</tr>
EOD;
}
?>

Link to comment
https://forums.phpfreaks.com/topic/190598-read_exif_data-question/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.