DataObjects/Images.php
[Pman.Core] / DataObjects / Images.php
index 84b39c0..ff1f107 100644 (file)
@@ -839,7 +839,34 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
             $width = $this->width;
             $height = $this->height;
             
+            if(!empty($scaleWidth)){
+                $width = $scaleWidth;
+
+                if(empty($scaleHeight)){
+                    $height = $this->height * $scaleWidth / $this->width;
+                }
+            }
+            
+            print_R($width);exit;
+
+            if(!empty($scaleHeight)){
+                $height = $scaleHeight;
+
+                if(empty($scaleWidth)){
+                    $width = $this->width * $scaleHeight / $this->height;
+                }
+            }
             
+            $im = imagecreatefromstring($data);
+            
+            if (($scaled = imagescale($im, $width, $width)) != false) {
+                ob_start();
+                imagejpeg($scaled);
+                $data = ob_get_contents();
+                ob_end_clean();
+                imagedestroy($im);
+                imagedestroy($scaled);
+            }
             
         }