| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | public function Execute($imageResource) |
||
| 16 | { |
||
| 17 | // Preserve transparency |
||
| 18 | imagecolortransparent($imageResource, imagecolorallocatealpha($imageResource, 0, 0, 0, 127)); |
||
| 19 | imagealphablending($imageResource, false); |
||
| 20 | imagesavealpha($imageResource, true); |
||
| 21 | |||
| 22 | // Make grayscale |
||
| 23 | imagefilter($imageResource, IMG_FILTER_GRAYSCALE); |
||
| 24 | |||
| 25 | return $imageResource; |
||
| 26 | } |
||
| 27 | } |
||
| 28 | } |