관리-도구
편집 파일: 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; } }