Código PHP:
header("Content-type: image/png");
$im = imagecreatetruecolor(200, 100);
$color = imagecolorallocate($im, 255, 255, 255);
imagefill($im, 0, 0, $color);
$fuente = "GoodDogCool.otf";
imagettftext($im, 15, 0, 15, 20, $color, $fuente, "TEXTO!");
imagepng($im);
imagedestroy($im);