Iron_Man, Блин, ну создай простую прозрачную картинку, и проверь что там у тебя за GD стоит.
// создай файл с этим кодом
header("Content-Type: image/png");
$im = @imagecreatetruecolor(200, 200);
imagesavealpha($im, true);
$transparent = imagecolorallocatealpha($im, 0, 0, 0, 127);
imagefill($im, 0, 0, $transparent);
$white = imagecolorallocate($im, 255, 255, 255);
imagestring($im, 5, 45, 85, "SIMPLE STRING", $white);
imagepng($im);
imagedestroy($im);