From e888e991cda58952b22551f47ce53d46018368d6 Mon Sep 17 00:00:00 2001 From: edward Date: Wed, 5 Oct 2016 16:52:15 +0800 Subject: [PATCH] Images.php --- Images.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Images.php b/Images.php index a9fcc28b..4f1179c4 100644 --- a/Images.php +++ b/Images.php @@ -232,7 +232,7 @@ class Pman_Core_Images extends Pman } // print_r($img);exit; $x = $img->toFileConvert(); - if (empty($this->as_mimetype)) { + if (empty($this->as_mimetype) || $img->mimetype == 'image/gif') { $this->as_mimetype = $img->mimetype; } if (!$this->thumb) { @@ -243,6 +243,11 @@ class Pman_Core_Images extends Pman //echo "SKALING? $this->size"; // acutally if we generated the image, then we do not need to validate the size.. + require_once 'File/MimeType.php'; + $y = new File_MimeType(); + $ext = $y->toExt(trim((string) $this->as_mimetype )); + + print_r($ext);exit; // if the mimetype is not converted.. -- 2.39.2