Kód:
<?php
header("Content-type: image/png");
$im = @imagecreate(110, 20)
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, $_GET['mytext'], $text_color); //tu je zazrak
imagepng($im);
imagedestroy($im);
?>
neskusal som, ale snad to pojde