ManaPHP\Image\Adapter\Imagick::resize PHP Метод

resize() публичный Метод

public resize ( integer $width, integer $height ) : static
$width integer
$height integer
Результат static
    public function resize($width, $height)
    {
        $this->_image->scaleImage($width, $height);
        $this->_width = $this->_image->getImageWidth();
        $this->_height = $this->_image->getImageHeight();
        return $this;
    }