DataObjects/Images.php
[Pman.Core] / DataObjects / Images.php
index 82f3a9a..ee2b3fa 100644 (file)
@@ -866,9 +866,9 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
 //            
 //        }
         
-        if(!empty($scaleWidth) || !empty($scaleHeight)){
-            $data = $this->scale($scaleWidth, $scaleHeight);
-        }
+//        if(!empty($scaleWidth) || !empty($scaleHeight)){
+//            $data = $this->scale($scaleWidth, $scaleHeight);
+//        }
         
         if($rotate){
             $data = $this->rotate($data);
@@ -937,4 +937,9 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         return $imagick->getImageBlob();
     }
     
+    function scale($width, $height)
+    {
+        
+    }
+    
  }