1 | <?php |
||
19 | class Crop implements ToolInterface |
||
20 | { |
||
21 | /** |
||
22 | * Handle image |
||
23 | * |
||
24 | * @param ManipulatorInterface $image |
||
25 | * @param array $params |
||
26 | * |
||
27 | * @return ManipulatorInterface |
||
28 | * |
||
29 | * @throws Exception |
||
30 | */ |
||
31 | public static function handle(ManipulatorInterface $image, array $params = []): ManipulatorInterface |
||
42 | } |
||
43 |