Underline text using imagettftext
问题 My question is, how do I underline all the text in the image? Code: function createImage($text) { $text .= "\n"; $text = wordwrap($text, 40, "\n"); $newlines = substr_count($text, "\n"); if($newlines == 0) { $height = 30; } else { $height = 30*$newlines-$newlines*7; } putenv('GDFONTPATH=' . realpath('.')); header('Content-Type: image/png'); $im = imagecreatetruecolor(315, $height); $white = imagecolorallocate($im, 255, 255, 255); $grey = imagecolorallocate($im, 128, 128, 128); $black =