From baee9cc50fccdf33540d13a3c91a1e318aed482d Mon Sep 17 00:00:00 2001 From: edward Date: Wed, 5 Oct 2016 16:44:57 +0800 Subject: [PATCH] Images.php --- Images.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Images.php b/Images.php index db51ee7c..a9fcc28b 100644 --- a/Images.php +++ b/Images.php @@ -232,10 +232,9 @@ class Pman_Core_Images extends Pman } // print_r($img);exit; $x = $img->toFileConvert(); - if (empty($this->as_mimetype) || $img->mimetype == 'image/gif') { + if (empty($this->as_mimetype)) { $this->as_mimetype = $img->mimetype; } - if (!$this->thumb) { $x->convert( $this->as_mimetype); $x->serve($this->method); @@ -244,6 +243,8 @@ 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.. + + // if the mimetype is not converted.. // then the filename should be original.{size}.jpeg $fn = $img->getStoreName() . '.'. $this->size . '.jpeg'; // thumbs are currenly all jpeg.!??? -- 2.39.2