使用 HTML5 画布生成动画 GIF

2022-01-17 00:00:00 canvas javascript html html5-canvas

他们有图书馆可以这样做吗?

Are they any library to do so?

任何浏览器都不支持 AFAIK dataToURL('image/gif')

AFAIK dataToURL('image/gif') isn't supported by any browser

推荐答案

Canvas 无法生成(动画)GIF.您需要使用 JavaScript 库来执行此操作.

Canvas can't generate (animated) GIFs. You need to use a JavaScript library to do so.

有 jsgif,一个用于生成动画 GIF 的 JS 库:http://github.com/antimatter15/jsgif

There is jsgif, a JS library to generate animated GIFs: http://github.com/antimatter15/jsgif

这篇博文解释了用法:http://antimatter15.com/wp/2010/07/javascript-to-animated-gif/

相关文章