在Matplotlib中在图中绘制动画文本
为了在图中动画文本,我们可以按照以下步骤进行操作。
- 设置图形大小并调整子图之间和周围的填充。
- 设置x轴和y轴的限制。
- 初始化变量, string 。
- 使用 text() 方法放置文本在图中。
- 使用 FuncAnimation() 动画文本。在文本轴上设置文本。
- 关闭轴。
- 使用 show() 方法显示图形。
例子
from matplotlib import pyplot as plt, animation
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, ax = plt.subplots()
ax.set(xlim=(-1, 1), ylim=(-1, 1))
string = '你好,你在做什么?'
label = ax.text(0, 0, string[0], ha='center', va='center', fontsize=20, color="红色")
def animate(i):
label.set_text(string[:i + 1])
anim = animation.FuncAnimation(
fig, animate, interval=200, frames=len(string))
ax.axis('off')
plt.show()