Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
15 | public function load(ImageInterface $image, array $options = array()) |
||
16 | { |
||
17 | list($x, $y) = $options['start']; |
||
18 | list($width, $height) = $options['size']; |
||
19 | |||
20 | $filter = new Crop(new Point($x, $y), new Box($width, $height)); |
||
21 | $image = $filter->apply($image); |
||
22 | |||
23 | return $image; |
||
24 | } |
||
25 | } |
||
26 |