<?php
header( 'Content-type: image/png' );
$napis = $_GET['napis'];
if ( $napis == '' )
$napis = 'w adresie dopisz ?napis = twój tekst';
$im = @imagecreate( 400, 50 )
or die( 'GD nie jest obsługiwane' );
$background_color = imagecolorallocate( $im, 255, 255, 150 );
$text_color = imagecolorallocate( $im, 233, 14, 91 );
imagestring( $im, 5, 5, 5, $napis, $text_color );
imagestring( $im, 4, 170, 25, 'wszystko zrobiłeś(aś) dobrze ;-)', $text_color );
imagepng( $im );
imagedestroy( $im );
?>