ManaPHP\Image::resize PHP Method

resize() public method

public resize ( integer $width, integer $height ) : static
$width integer
$height integer
return static
    public function resize($width, $height)
    {
        $this->adapter->resize($width, $height);
        return $this;
    }