我想从路径中获取动画gif图像。但是我得到的是没有动画的gif
$im = imagecreatefromgif($path);
$newFilePath = app()->basePath("public/memes/") . $newname .'.gif';
header('Content-Type: image/gif');
imagegif($im, $newFilePath);
imagedestroy( $im );
return $newFilePath;
答案 0 :(得分:4)
manual - “将动画GIF文件读入内存时,只会在图像资源指针中返回第一帧。”
查看http://phpimageworkshop.com/tutorial/5/manage-animated-gif-with-imageworkshop.html