summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-06-30 09:34:00 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-06-30 09:34:00 +0000
commiteda7f279dc8d78633480e3cc9a8a2018606787fe (patch)
tree04b24eb4fe302faa4644c8a7a454bcef2ba3ec35 /phpfspot.class.php
parent48a1088931b8d491f80ac19b29367c70407d3bf3 (diff)
issue15, check for compatible image type
git-svn-id: file:///var/lib/svn/phpfspot/trunk@141 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index 89cf0b8..fb54eb6 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -513,6 +513,12 @@ class PHPFSPOT {
if(!file_exists($orig_image))
return false;
+ $details = getimagesize($orig_image);
+
+ /* check if original photo is a support image type */
+ if(!$this->parent->checkifImageSupported($details['mime']))
+ return false;
+
$meta = $this->get_meta_informations($orig_image);
$rotate = 0;
@@ -877,6 +883,15 @@ class PHPFSPOT {
} // _debug()
+ public function checkifImageSupported($mime)
+ {
+ if(in_array($mime, Array("image/jpeg")))
+ return true;
+
+ return false;
+
+ } // checkifImageSupported()
+
}
?>