如何在 Matplotlib 中对文字添加动画?
要在 matplotlib 中对文字添加动画效果,我们可以采取以下步骤 -
- 从 matplotlib 中导入 "animation" 包。
- 设置图形大小及调整子图之间的内边距。
- 创建新图形或激活现有图形。
- 作为子图安排的一部分,向图形添加一个 'ax'。
- 初始化变量 "text" 以保存字符串。
- 在 x=0.20 和 y=0.50 的轴线上添加文字。
- 制作颜色列表。
- 通过重复调用 *animate* 函数来制作动画,其中文本大小会增加并且颜色也会改变。
- 要显示图形,请使用 show() 方法。
示例
from matplotlib import animation import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() ax = fig.add_subplot(111) text = 'You are welcome!' txt = ax.text(.20, .5, text, fontsize=15) colors = ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf'] def animate(num): txt.set_fontsize(num * 2 + num) txt.set_color(colors[num % len(colors)]) return txt, anim = animation.FuncAnimation(fig, animate, frames=len(text) - 1, blit=True) plt.show()
输出
将产生以下输出
广告