Hey
Im trying to sned an animated gif though GD, But it is not animated on the other side
http://www.exussum.co.uk/sig/meh.gif
Any ideas ?
Code is Below
[code]
<?php header("Content-type: image/gif"); $fp = fopen("info.txt", "r"); $handle= fread($fp, 1000); $handle=explode('|~|',$handle); $a=$handle['0']; $end=$handle['1']; $album=$handle['2']; $now=time(); $a =explode('-',$a); $artist=$a['0']; $song=$a['1']; if(($end+5)>$now){ $top='Currently listening to:'; }else{ $top='Music not playing, Last song played was:'; } $stuff=trim($song).' by ' .trim($artist); $im = imagecreatefromgif('music.gif'); $color = imagecolorallocate($im, '1', '1', '1'); imagestring($im, 3, 103, 5, $top, $color); imagestring($im, 3, 103, 50, $stuff, $color); imagegif($im); imagedestroy($im); ?>[/code]