| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 42 | private function setLuminancePixels():void{ |
||
| 43 | $this->imagick->setImageColorspace(Imagick::COLORSPACE_GRAY); |
||
| 44 | $pixels = $this->imagick->exportImagePixels(1, 1, $this->width, $this->height, 'RGB', Imagick::PIXEL_CHAR); |
||
| 45 | |||
| 46 | $countPixels = count($pixels); |
||
| 47 | |||
| 48 | for($i = 0; $i < $countPixels; $i += 3){ |
||
| 49 | $this->setLuminancePixel($pixels[$i] & 0xff, $pixels[$i + 1] & 0xff, $pixels[$i + 2] & 0xff); |
||
| 50 | } |
||
| 54 |