Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
44 | 2 | public function extract($content) |
|
45 | { |
||
46 | 2 | $this->imagick->readImageBlob($content); |
|
47 | 2 | $this->imagick->stripImage(); |
|
48 | 2 | $this->imagick->resizeImage($this->sampleWidth, $this->sampleHeight, Imagick::FILTER_QUADRATIC, 1); |
|
49 | 2 | $this->imagick->setFormat('GIF'); |
|
50 | |||
51 | 2 | return $this->imagick->getImageBlob(); |
|
52 | } |
||
53 | } |
||
54 |