DataObjects/Images.php
[Pman.Core] / DataObjects / Images.php
index 451e1f0..5884eab 100644 (file)
@@ -816,7 +816,7 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         
     }
     
-    function toBase64($rotate = false, $scale = false)
+    function toBase64($rotate = false, $scaleWidth = 0, $scaleHeight = 0)
     {
         if(!preg_match('/^image\//', $this->mimetype)){
             return false;
@@ -833,6 +833,27 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         if($rotate){
             $data = $this->rotate();
         }
+            
+        $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;
+            }
+        }
+        
+        
         
         $base64 = 'data:' . $this->mimetype . ';base64,' . base64_encode($data);