芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/airport-back/vendor/imagine/imagine/src/Filter/FilterInterface.php
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Imagine\Filter; use Imagine\Image\ImageInterface; /** * Interface for imagine filters. */ interface FilterInterface { /** * Applies scheduled transformation to an ImageInterface instance. * * @param \Imagine\Image\ImageInterface $image * * @return \Imagine\Image\ImageInterface returns the processed ImageInterface instance */ public function apply(ImageInterface $image); }