Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function extract($context): Metadata |
||
24 | { |
||
25 | rewind($context['stream']); |
||
26 | |||
27 | $image = imagecreatefromstring(stream_get_contents($context['stream'])); |
||
28 | |||
29 | $data = [ |
||
30 | 'width' => imagesx($image), |
||
31 | 'height' => imagesy($image), |
||
32 | ]; |
||
33 | |||
34 | imagedestroy($image); |
||
35 | |||
36 | return Metadata::fromArray($data); |
||
37 | } |
||
39 |