Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class ImageMagick extends AbstractImageResizer |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $binaryPath = 'convert'; |
||
13 | |||
14 | public function resizeCommand(Image $image, bool $returnBase64 = false): string |
||
22 | ); |
||
23 | } |
||
24 | |||
25 | public function cropCommand(Image $image, string $mode = Image::MANUAL_CROP, int $x = 0, int $y = 0): string |
||
37 | } |