Recording and saving an SVG animation as an animated GIF [closed]

半城伤御伤魂 提交于 2019-11-28 22:29:50

问题


Is there a library or tool for recording and saving an SVG animation as an animated GIF?

The SVG geometries are animated with JavaScript and D3.js, and their colors and opacities are animated with CSS 3.


回答1:


I found that simply using a screen capture program with gif recording feature satisfies all my needs, and it is reliable and clean. There are several such screen capture programs. I found LICEcap solid.

Here is (almost verbatim) my procedure from question mentioned above:

The solution uses a tool called LICEcap, a screen capture utility for Win and Mac. Steps are following:

  1. Download LICEcap here and install it. Now, if you start this program, it will have a rather unusual shape, just a thin frame, and everything inside the frame will be transparent:

  2. Go to the window with your d3.js animation and prepare everything so that you could start animation at some point. Lets say we want to record this example from d3js.org:

  3. Now start LICEcap and position it over the area you want to have in your animated gif:

  4. Make sure that you enter at least 20 fps in the bottom left edit box, otherwise the recording will be low quality. Press record. A dialog will first appear, and you choose here whether you want your gif to be in an infinite loop, or just repeated once, or any number of times. Also an interesting option is to add some visual clues for mouse clicks. Choose also filename, and press Save.

  5. Now you do whatever you have to do to trigger animations. I pressed several times buttons Grouped and Stacked. After I decided its enough, I pressed Stop. Resulting file is:

That's it!



来源:https://stackoverflow.com/questions/21319398/recording-and-saving-an-svg-animation-as-an-animated-gif

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!