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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.