Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
31 | public function load(string $path) |
||
32 | { |
||
33 | $content = @file_get_contents($path); |
||
34 | if (empty($content)) { |
||
35 | throw new ImagesException($this->getImLang()->imCannotCreateFromResource()); |
||
36 | } |
||
37 | $result = @imagecreatefromstring($content); |
||
38 | if (false === $result) { |
||
39 | throw new ImagesException($this->getImLang()->imCannotCreateFromResource()); |
||
40 | } |
||
41 | return $result; |
||
42 | } |
||
49 |