ManaPHP\Image::crop PHP Method

crop() public method

public crop ( integer $width, integer $height, integer $offsetX, integer $offsetY ) : static
$width integer
$height integer
$offsetX integer
$offsetY integer
return static
    public function crop($width, $height, $offsetX = 0, $offsetY = 0)
    {
        $this->adapter->crop($width, $height, $offsetX, $offsetY);
        return $this;
    }