display some meta data informations
[phpfspot.git] / phpfspot.class.php
index 641cc0efbd215feb6d8fb08473e4340837b3f69b..c783939f894519dd00cbabdd07c44403e71763c1 100644 (file)
@@ -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()
+
 }
 
 ?>