PHP קוד:
<html>
<head>
<title>index</title>
</head>
<body>
<?
if($_GET['action']=="create"){
$image=imagecreatetruecolor(400,500);
$black=imagecolorallocate($image, 0, 0, 0);
$pink=imagecolorallocate($image, 233, 14, 91);
$text=$_POST['text'];
$background_color = $black;
$text_color = $pink;
$font = 'arial.ttf';
imagettftext($image, 20, 0, 10, 20, $black, $font, $text);
imagepng($image);
}
else{
?>
<form action="index.php?action=create" method="post">
<textarea name="text" id="text"></textarea>
<input type="submit" value="שלח" />
</form>
<?
}
?>
</body>
</html>