X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FImages.php;h=d024fcfb1ced3c08d28c94f0ea18c970c7294189;hb=aec5c9f088cd7240886c6010db4069fcf38b720a;hp=7186e75c61cd570b01bd7e78a50434c5c3ca5204;hpb=880decf24c46fc821644f3e8dec831d578ccaf3c;p=Pman.Core diff --git a/DataObjects/Images.php b/DataObjects/Images.php index 7186e75c..d024fcfb 100644 --- a/DataObjects/Images.php +++ b/DataObjects/Images.php @@ -830,42 +830,6 @@ class Pman_Core_DataObjects_Images extends DB_DataObject $data = file_get_contents($file); -// if(!empty($scaleWidth) || !empty($scaleHeight)){ -// -// $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); -// -// if (($scaled = imagescale($im, $width, $height)) != false) { -// ob_start(); -// imagejpeg($scaled); -// $data = ob_get_contents(); -// ob_end_clean(); -// imagedestroy($im); -// imagedestroy($scaled); -// } -// -// } - if(!empty($scaleWidth) || !empty($scaleHeight)){ $data = $this->scale(false, $scaleWidth, $scaleHeight); } @@ -946,7 +910,7 @@ class Pman_Core_DataObjects_Images extends DB_DataObject $imagick->readImageBlob($imageBlob); } -// $imagick->resizeimage($width, $height, Imagick::FILTER_LANCZOS, true, true); + $imagick->resizeimage($width, $height, Imagick::FILTER_LANCZOS, true, true); return $imagick->getImageBlob();