I am using this block of code..
<?
$new_w=100;
$new_h="200";
header("Content-type: image/gif");
$dst_img=ImageCreate($new_w,$new_h);
$src_img=ImageCreateFromGif("./test.gif");
ImageCopyResized($dst_img,$src_img,0,0,0,0,$new_w,$new_h,ImageSX($src_img),ImageSY($src_img));
ImageGif($dst_img);
echo "test";
?>
the "test" never appears.... how can I mix text and images generated by php on the same page?
thanks!
Brooks