imagepng和imagegif

时间:2012-09-10 03:08:57

标签: php gd

我需要一些关于PHP GD的帮助。这是我的一段代码。

    header("Content-type: image/gif");

    $image = imagecreatetruecolor(550, 20);
    imagealphablending($image, false);

    $col=imagecolorallocatealpha($image,255,255,255,127);
    $black = imagecolorallocate($image, 0, 0, 0);

    imagefilledrectangle($image,0,0,550,20,$col);
    imagealphablending($image, true);

    $font_path = 'font/arial.ttf';
    imagettftext($image, 9, 0, 16, 13, $black, $font_path, $lastlisten);
    imagesavealpha($image, true);

    imagepng($image);

问题是当我使用imagepng时,它可以像这样显示png。 enter image description here

但如果我改用imagegif,它就会变成这样。 enter image description here

我确实尝试过使用gif和png的不同标题。 imagegif的结果仍然相同。 问题是如何才能正确显示GIF版本?谢谢你

0 个答案:

没有答案