Forum Moderators: coopster
<p><strong>Text text.</strong></p>
<p><span style="font-size: 14pt;"><span style="background-color: #ff0000;">Text text...</span></span></p>
$im = imagecreate(200, 100);
$bg1 = imagecolorallocate($im, 255, 255, 255);
$bg2 = imagecolorallocate($im, 255, 0, 0);
$tc = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 200 ,100, $bg1);
imagestring($im, 2, 0, 0, 'Test Text.', $tc);
imagefilledrectangle($im, 0, 20, 200 ,40, $bg2);
imagestring($im, 5, 14, 23, 'Text text...', $tc);
//render
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);