DataObjects/Images.php
[Pman.Core] / DataObjects / Images.php
index 84b39c0..036edc7 100644 (file)
@@ -838,11 +838,33 @@ 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;
+                }
+            }
+
+            if(!empty($scaleHeight)){
+                $height = $scaleHeight;
+
+                if(empty($scaleWidth)){
+                    $width = $this->width * $scaleHeight / $this->height;
+                }
+            }
             
+            $im = imagecreatefromstring($data, IMG_NEAREST_NEIGHBOUR);
             
+            if (($scaled = imagescale($im, $width, $width)) != false) {
+                
+            }
             
         }
         
+        
+        
         $base64 = 'data:' . $this->mimetype . ';base64,' . base64_encode($data);
         
         return $base64;