I made some php programs that create a gif 'on the fly'
Everything works ok when I try it on the server, but when I load the image on a client only 10% of the image is shown and IE 'hangs'. Does someone experienced the same problem or does somebody knows what the problem is ?
One of my (stripped) sources)
<?php
header("Content-type: image/gif"
$image=imagecreatefromgif("jr.gif"
$grey=imagecolorallocate($image,210,210,210);
$darkgrey=imagecolorallocate($image,150,110,150);
imagestring($image,-2,5,$y,($hoog),0);
imagedashedline($image,40,$y,$xmax,$y,$darkgrey);
imagestring($image,-2,220,190,$txt,0);
imagegif($image);
?>
[sig][/sig]
Everything works ok when I try it on the server, but when I load the image on a client only 10% of the image is shown and IE 'hangs'. Does someone experienced the same problem or does somebody knows what the problem is ?
One of my (stripped) sources)
<?php
header("Content-type: image/gif"
$image=imagecreatefromgif("jr.gif"
$grey=imagecolorallocate($image,210,210,210);
$darkgrey=imagecolorallocate($image,150,110,150);
imagestring($image,-2,5,$y,($hoog),0);
imagedashedline($image,40,$y,$xmax,$y,$darkgrey);
imagestring($image,-2,220,190,$txt,0);
imagegif($image);
?>
[sig][/sig]