Images.php
authoredward <edward@roojs.com>
Wed, 5 Oct 2016 08:44:57 +0000 (16:44 +0800)
committeredward <edward@roojs.com>
Wed, 5 Oct 2016 08:44:57 +0000 (16:44 +0800)
Images.php

index db51ee7..a9fcc28 100644 (file)
@@ -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.!???