File "ManipulatorInterface.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/league/glide/src/Manipulators/ManipulatorInterface.php
File size: 467 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace League\Glide\Manipulators;
use Intervention\Image\Image;
interface ManipulatorInterface
{
/**
* Set the manipulation params.
*
* @param array $params The manipulation params.
*/
public function setParams(array $params);
/**
* Perform the image manipulation.
*
* @param Image $image The source image.
*
* @return Image The manipulated image.
*/
public function run(Image $image);
}