X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FImages.php;h=4c1b928422b2c112d2ef5cd6ecaa5b156d7e43bb;hb=c81b84e5570eb8f4e73c4a7912114e8f32a48b68;hp=8d6d68bc38ec4899579edc11bc52520a2bb0efd6;hpb=eeb8e2599bd1a3204b0b7bcf69ad23ca801ceef8;p=Pman.Core diff --git a/DataObjects/Images.php b/DataObjects/Images.php index 8d6d68bc..4c1b9284 100644 --- a/DataObjects/Images.php +++ b/DataObjects/Images.php @@ -830,8 +830,44 @@ 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($rotate){ - $data = $this->rotate(); + $data = $this->rotate($data); } $base64 = 'data:' . $this->mimetype . ';base64,' . base64_encode($data); @@ -869,12 +905,17 @@ class Pman_Core_DataObjects_Images extends DB_DataObject return $page; } - function rotate() + function rotate($imageBlob = false) { - $imagick = new Imagick($this->getStoreName()); + if(empty($imageBlob)){ + $imagick = new Imagick($this->getStoreName()); + } else { + $imagick = new Imagick(); + $imagick->readImageBlob($imageBlob); + } $orientation = $imagick->getImageOrientation(); - + print_R($orientation);exit; switch($orientation) { case Imagick::ORIENTATION_BOTTOMRIGHT: $imagick->rotateimage(new ImagickPixel('#00000000'), 180); // rotate 180 degrees