G'day Geoff
Thanks for replying. My server actually has an old version of GD installed which has GIF support, this script ended up working fine
<?
$id = ImageCreateFromGif("image.gif");
$trans = imagecolorexact($id, 120, 100, 90);
imagecolortransparent($id, $trans);
ImageGIF($id,"newimage.gif");
echo "done";
?>
....have you ever struggled with something for a long time, then looked back at the very simple finished product and wondered why you had so much trouble? Being new to PHP this happens to me every other day
My only problem now is my server doesn't let me download through HTTP for the ImageCreateFromGif function - yet another brick wall. I've decided to install PHP and GD on my computer and run the scripts from here - i found an install tutorial for PHP but i'm struggling with GD - can anyone recommend a good tutorial?