how can i add some text to the top of the image (white)
<?php
function LoadGif ($imgname)
{
$im = @imagecreatefromgif ($imgname);
if (!$im) {
$white = imagecolorallocate($im, 255, 255, 255);
imagestring ($im, 1, 5, 5, "Error loading $imgname", $tc);
}
return $im;
}
header("Content-Type: image/gif");
$img = LoadGif("header.gif");
imagegif($img);
?>
thanks in advanced. =)