我用这个函数来更新一个动态的 GIF 图片,但是 GD 把它渲染成静态的?
function draw_image ()
{
$img=imagecreatefromgif('images/moni.gif');
$text='test';
$lastpayout='test';
$colors['name'] = imagecolorallocate($img, 999, 000, 156);
ImageTTFText($img, 9, 0, 20, 235, $colors['name'], "images/impact.ttf", $text);
ImageTTFText($img, 9, 0, 20, 250, $colors['name'],"images/tahoma.ttf",$lastpayout);
ImageTTFText($img, 10, 0, 15, 270, $colors['name'], "images/tahoma.ttf", $text);
header("Content-type: image/gif");
imagegif($img);
}
echo draw_image ();
此函数将动画 GIF 转换为静态 GIF。谁能帮我?