Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function convert(string $file, Conversion $conversion = null): string |
||
14 | { |
||
15 | $imageFile = pathinfo($file, PATHINFO_DIRNAME).'/'.pathinfo($file, PATHINFO_FILENAME).'.jpg'; |
||
16 | |||
17 | $image = new Imagick(); |
||
18 | $image->readImage($file); |
||
19 | $image->setBackgroundColor(new ImagickPixel('none')); |
||
20 | $image->setImageFormat('jpg'); |
||
21 | |||
22 | file_put_contents($imageFile, $image); |
||
23 | |||
24 | return $imageFile; |
||
25 | } |
||
26 | |||
42 |