ah, ill test that function now...
actually im not sure having never used GD before,
heres the code i have for creating a thumbnail of an original picture:
header ("Content-type: image/jpeg");
$src = imagecreatefromjpeg("$image");
$im = imagecreate($newwidth,$newheight);
imagecopyresized($im,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
imagejpeg($im);
imagedestroy($im);
what/where would i replace/add the imagecreatetruecolor
also does imagecreatetruecolor work for all image formats? (ie: the ones that GD supports)
GIF, JPG, WBMP, XBM, PNG