summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-06-08 04:17:24 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-06-08 04:17:24 +0000
commit37a17e20128c27bb4e56ef2f020ece577703de4f (patch)
tree7d6ead86b2dd127277bc28c08c20c6bb091a1a99 /phpfspot.class.php
parent4c837f96cb1d36e7717d935e1f1270ffd423d2dd (diff)
display some meta data informations
git-svn-id: file:///var/lib/svn/phpfspot/trunk@49 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index 641cc0e..c783939 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -102,7 +102,10 @@ class PHPFSPOT {
$details = $this->get_photo_details($photo);
+ $meta = $this->get_meta_informations($this->translate_path($details['directory_path']) ."/". $details['name']);
+ $this->tmpl->assign('c_date', $meta['DateTime']);
+ $this->tmpl->assign('madewith', $meta['Make'] ." ". $meta['Model']);
$this->tmpl->assign('image_name', $details['name']);
$this->tmpl->assign('image_url', 'phpfspot_img.php?idx='. $photo ."&amp;width=". $this->cfg->photo_width);
@@ -329,6 +332,13 @@ class PHPFSPOT {
} // resize_image()
+ public function get_meta_informations($file)
+ {
+
+ return exif_read_data($file);
+
+ } // get_meta_informations()
+
}
?>