DataObjects/Images.php
[Pman.Core] / DataObjects / Images.php
index 1c0d86a..6396956 100644 (file)
@@ -830,15 +830,11 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         
         $data = file_get_contents($file);
         
-        if($rotate){
-            $data = $this->rotate();
-        }
-        
         if(!empty($scaleWidth) || !empty($scaleHeight)){
             
             $width = $this->width;
             $height = $this->height;
-
+            
             if(!empty($scaleWidth)){
                 $width = $scaleWidth;
 
@@ -846,6 +842,8 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
                     $height = $this->height * $scaleWidth / $this->width;
                 }
             }
+            
+            
 
             if(!empty($scaleHeight)){
                 $height = $scaleHeight;
@@ -855,11 +853,22 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
                 }
             }
             
+            $im = imagecreatefromstring($data);
             
+            if (($scaled = imagescale($im, $width, $height)) != false) {
+                ob_start();
+                imagejpeg($scaled);
+                $data = ob_get_contents();
+                ob_end_clean();
+                imagedestroy($im);
+                imagedestroy($scaled);
+            }
             
         }
         
-        
+        if($rotate){
+            $data = $this->rotate();
+        }
         
         $base64 = 'data:' . $this->mimetype . ';base64,' . base64_encode($data);
         
@@ -896,7 +905,7 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         return $page;
     }
     
-    function rotate()
+    function rotate($imageBlob = false)
     {
         $imagick = new Imagick($this->getStoreName());