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