<?php 
    header 
'Content-type: image/png' );
    
$im = @imagecreate 40050 ) or die ( 'GD nie jest obsługiwane' );
    
$background_color imagecolorallocate $im255255);
    
$text_color imagecolorallocate $im2331491 );
    
imagestring $im555,  'ten serwer obsługuje GD'$text_color );
    
imagestring $im417025,  'wszystko zrobiłes dobrze ;-)'$text_color );
    
imagepng $im );
    
imagedestroy $im ); 
?>