', '', $html); list($color, $number) = explode(';">', $html); # Create the image header("Content-Type: image/png"); $im = @imagecreate(18, 18) or die("Cannot Initialize new GD image stream"); if ($color == 'orange') { $background_color = imagecolorallocate($im, 255, 165, 0); } elseif ($color == 'green') { $background_color = imagecolorallocate($im, 173, 255, 47); } else { # Default = red $background_color = imagecolorallocate($im, 255, 0, 0); } $text_color = imagecolorallocate($im, 0, 0, 0); imagestring($im, 4, 1, 1, $number, $text_color); imagepng($im); imagedestroy($im); ?>