Forum Moderators: coopster
Something along the line:
<?php
header("Content-type: image/jpeg");
$im = @imagecreatetruecolor(100, 50);
$background_color = imagecolorallocate($im, 255, 255, 255);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, "A random string", $text_color);
imagejpg($im, '', 75);
imagedestroy($im);
?>