在Matplotlib中,如何将D3.js动画创建为动态GIF文件
要将D3.js动画创建为动态GIF文件,可以执行以下步骤 −
- 设置图形大小并调整子图之间和周围的填充。
- 创建一个新图或激活现有图。
- 添加一个轴到当前图并将其设为当前轴。
- 用空列表绘制线条。
- 要初始化线条,请传递空列表。
- 要使正弦曲线动画化,请更新正弦曲线值并返回线实例。
- 使用 PillowWriter() 类获取影片编写程序实例。
- 使用 PillowWriter 保存.gif文件。
示例
import numpy as np
from matplotlib import pyplot as plt
from matplotlib import animation
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig = plt.figure()
ax = plt.axes(xlim=(0, 2), ylim=(-2, 2))
line, = ax.plot([], [], lw=2)
def init():
line.set_data([], [])
return line,
def animate(i):
x = np.linspace(0, 2, 1000)
y = np.sin(2 * np.pi * (x - 0.01 * i))
line.set_data(x, y)
return line,
ani = animation.FuncAnimation(fig, animate, init_func=init, frames=200, interval=20, blit=True)
writer = animation.PillowWriter(fps=25)
ani.save("sine.gif", writer=writer)