Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function execute(Image $image) |
||
21 | { |
||
22 | /** @var DoubleCoordinateColorCommandOption $options */ |
||
23 | $options = $this->options; |
||
24 | |||
25 | $color = ColorUtils::colorIdentifier($image->getResource(), $options->getColor()); |
||
26 | imagefilledrectangle($image->getResource(), |
||
27 | $options->getCoordinate1()->getX(), |
||
28 | $options->getCoordinate1()->getY(), |
||
29 | $options->getCoordinate2()->getX(), |
||
30 | $options->getCoordinate2()->getY(), |
||
31 | $color |
||
32 | ); |
||
33 | |||
34 | return $image; |
||
35 | } |
||
37 |