As an extra test, put the following in a file named gdtest.php and upload it:
PHP Code:
<?php
$i = imagecreatetruecolor(100,50);
$w = imagecolorallocate($i,255,255,255);
$b = imagecolorallocate($i,0,0,0);
imagefill($i,0,0,$b);
imagestring($i,4,5,25,'it works',$w);
header("Content-type: image/png");
imagepng($i);
imagedestroy($i);
?>
Then point your browser to it. If it doesn't work, no GD.