Conditions | 3 |
Paths | 4 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | public function load(ImageInterface $image, array $options = []) |
||
42 | { |
||
43 | $x = isset($options['start'][0]) ? $options['start'][0] : null; |
||
44 | $y = isset($options['start'][1]) ? $options['start'][1] : null; |
||
45 | |||
46 | $destImage = $this->imagine->open($this->projectDir.'/'.$options['image']); |
||
47 | |||
48 | return $image->paste($destImage, new Point($x, $y)); |
||
49 | } |
||
50 | } |
||
51 |