在matplotlib官網(wǎng)看到了第三方庫(kù)numpngw的簡(jiǎn)介,利用該庫(kù)作為插件可以輔助matplotlib生成png動(dòng)畫。
numpngw概述
numpngw庫(kù)可生成PNG靜態(tài)圖像和PNG動(dòng)畫。
- 通過(guò)write_png函數(shù)可以將 numpy保存為PNG 文件。
- 通過(guò) write_apng 函數(shù)可以將數(shù)組序列保存為 PNG 動(dòng)畫(APNG)文件 。
- 通過(guò)AnimatedPNGWriter類可以將Matplotlib 保存為PNG動(dòng)畫文件。
numpngw庫(kù)的依賴包是numpy和setuptools。
使用numpngw和matplotlib生成png動(dòng)畫
numpngw+matplotlib實(shí)現(xiàn)png動(dòng)畫
import numpy as np
from matplotlib import pyplot as plt
import matplotlib.animation as animation
from numpngw import AnimatedPNGWriter
t = np.linspace(0, 6, 100)
x = 16 * np.sin(t) ** 3
y = 13 * np.cos(t) - 5 * np.cos(2 * t) - 2 * np.cos(3 * t) - np.cos(4 * t)
data=[i for i in zip(x,y)]
def plot_love(data):
x, y = data
plt.scatter(x, y, 60, c="r", alpha=0.7, marker=r"$\heartsuit$")
fig=plt.figure(figsize=(5, 3), dpi=100)
plt.axis("off")
writer = AnimatedPNGWriter(fps=12)
animator = animation.FuncAnimation(fig, plot_love, frames=data)
animator.save("love.png", writer=writer)
使用matplotlib和pillow實(shí)現(xiàn)gif動(dòng)畫
from matplotlib import pyplot as plt
import matplotlib.animation as animation
import numpy as np
t = np.linspace(0, 6, 100)
x = 16 * np.sin(t) ** 3
y = 13 * np.cos(t) - 5 * np.cos(2 * t) - 2 * np.cos(3 * t) - np.cos(4 * t)
data=[i for i in zip(x,y)]
def plot_love(data):
x, y = data
plt.scatter(x, y, 60, c="r", alpha=0.7, marker=r"$\heartsuit$")
fig=plt.figure(figsize=(5, 3), dpi=100)
plt.axis("off")
animator = animation.FuncAnimation(fig, plot_love, frames=data, interval=80)
animator.save("love.gif", writer='pillow')
關(guān)鍵代碼解讀
# 導(dǎo)入AnimatedPNGWriter
from numpngw import AnimatedPNGWriter
# 初始化AnimatedPNGWriter
writer = AnimatedPNGWriter(fps=12)
# 將save函數(shù)中的writer參數(shù)設(shè)為AnimatedPNGWriter實(shí)例
animator.save("love.png", writer=writer)
通過(guò)對(duì)比可知,使用 numpngw+matplotlib生成png動(dòng)畫方式非常簡(jiǎn)單,只用初始化AnimatedPNGWriter,在save函數(shù)中指定writer即可。
到此這篇關(guān)于使用numpngw和matplotlib生成png動(dòng)畫的示例代碼的文章就介紹到這了,更多相關(guān)numpngw和matplotlib生成png動(dòng)畫內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Python使用matplotlib繪制動(dòng)畫的方法
- Python通過(guò)matplotlib繪制動(dòng)畫簡(jiǎn)單實(shí)例
- Python使用Matplotlib實(shí)現(xiàn)雨點(diǎn)圖動(dòng)畫效果的方法
- matplotlib繪制動(dòng)畫代碼示例
- 如何基于Python Matplotlib實(shí)現(xiàn)網(wǎng)格動(dòng)畫
- 如何利用Matplotlib庫(kù)繪制動(dòng)畫及保存GIF圖片