From 37a17e20128c27bb4e56ef2f020ece577703de4f Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Fri, 8 Jun 2007 04:17:24 +0000 Subject: [PATCH] display some meta data informations git-svn-id: file:///var/lib/svn/phpfspot/trunk@49 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- phpfspot.class.php | 10 ++++++++++ templates/single_photo.tpl | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) 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 ."&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() + } ?> diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl index 4501333..2243b56 100644 --- a/templates/single_photo.tpl +++ b/templates/single_photo.tpl @@ -2,7 +2,7 @@
- Photo {$image_name}
+ Photo {$image_name}, {$c_date}, {$madewith}
-- 2.25.1