PHP imagecreatefromgif不是从路径创建动画gif

时间:2018-03-08 13:44:43

标签: php gd gif

我想从路径中获取动画gif图像。但是我得到的是没有动画的gif

$im = imagecreatefromgif($path);
$newFilePath = app()->basePath("public/memes/") . $newname .'.gif';
header('Content-Type: image/gif');
imagegif($im, $newFilePath);
imagedestroy( $im );
return $newFilePath;

1 个答案:

答案 0 :(得分:4)

manual - “将动画GIF文件读入内存时,只会在图像资源指针中返回第一帧。”

查看http://phpimageworkshop.com/tutorial/5/manage-animated-gif-with-imageworkshop.html