pyecharts如何将生成的动态图保存成gif动图

使用timeline时间线轮播多图,基础代码这么写

from snapshot_phantomjs import snapshot

from pyecharts.render import make_snapshot

...

make_snapshot(snapshot, timeline.render('test.html'), "test.gif")

这样生成的图片虽然是带gif后缀,但是还是静态的。

请问有没有解决方法呢?

你得分别渲染出多个图片,再合成gif,光改后缀没用
https://blog.csdn.net/ZT7524/article/details/88928005