It says
Call to undefined function: imagegif()
.... What!??! =(
My Code:
<?php
header("Content-type: image/gif");
$image = imagecreate( 50, 20 );
$red = imagecolorallocate( $image, 255,0,0 );
$blue = imagecolorallocate( $image, 0,0,255 );
$font = "/home/turdz/www/php/imagecreate/arial.ttf";
imageTTFtext( $image, 14, 0, 25, 10, $blue, $font, "omgsupk" );
imagegif( $image );
?>