From: Andreas Unterkircher Date: Fri, 8 Jun 2007 15:22:47 +0000 (+0000) Subject: if we specify the image size before, the screen doesn't flickering X-Git-Tag: phpfspot-1.2~282 X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=commitdiff_plain;h=ae3e56961cdc914f315c54b1e2918aa35b638221;hp=2ce4888da55447df8e58c241020bbfdae72cbd56;ds=sidebyside if we specify the image size before, the screen doesn't flickering when the next image gets loaded git-svn-id: file:///var/lib/svn/phpfspot/trunk@53 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- diff --git a/phpfspot.class.php b/phpfspot.class.php index c783939..e4ca4ff 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -103,7 +103,10 @@ class PHPFSPOT { $details = $this->get_photo_details($photo); $meta = $this->get_meta_informations($this->translate_path($details['directory_path']) ."/". $details['name']); + $info = getimagesize($this->translate_path($details['directory_path']) ."/thumbs/". $this->cfg->photo_width ."_". $details['name']); + $this->tmpl->assign('width', $info[0]); + $this->tmpl->assign('height', $info[1]); $this->tmpl->assign('c_date', $meta['DateTime']); $this->tmpl->assign('madewith', $meta['Make'] ." ". $meta['Model']); $this->tmpl->assign('image_name', $details['name']); diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl index 716a78e..7935fef 100644 --- a/templates/single_photo.tpl +++ b/templates/single_photo.tpl @@ -19,7 +19,7 @@ { else } { /if } - +