Sulu\Bundle\MediaBundle\Media\ImageConverter\Cropper\Cropper::crop PHP Метод

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

public crop ( Imagine\Image\ImageInterface $image, $x, $y, $width, $height )
$image Imagine\Image\ImageInterface
    public function crop(ImageInterface $image, $x, $y, $width, $height)
    {
        $point = new Point($x, $y);
        $box = new Box($width, $height);
        $image->crop($point, $box);
        return $image;
    }