Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCommand.php
<?php

namespace Intervention\Image\Imagick\Commands;

use
Intervention\Image\Commands\AbstractCommand;

class
ResizeCommand extends AbstractCommand
{
   
/**
     * Resizes image dimensions
     *
     * @param  \Intervention\Image\Image $image
     * @return boolean
     */
   
public function execute($image)
    {
       
$width = $this->argument(0)->value();
       
$height = $this->argument(1)->value();
       
$constraints = $this->argument(2)->type('closure')->value();

       
// resize box
       
$resized = $image->getSize()->resize($width, $height, $constraints);

       
// modify image
       
$image->getCore()->scaleImage($resized->getWidth(), $resized->getHeight());

        return
true;
    }
}