今天就跟大家聊聊有關使用numpngw與matplotlib怎么生成一個png動畫,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)專注于企業(yè)全網(wǎng)整合營銷推廣、網(wǎng)站重做改版、漣源網(wǎng)站定制設計、自適應品牌網(wǎng)站建設、HTML5、購物商城網(wǎng)站建設、集團公司官網(wǎng)建設、成都外貿(mào)網(wǎng)站建設公司、高端網(wǎng)站制作、響應式網(wǎng)頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為漣源等各大城市提供網(wǎng)站開發(fā)制作服務。numpngw概述
numpngw庫可生成PNG靜態(tài)圖像和PNG動畫。
通過write_png函數(shù)可以將 numpy保存為PNG 文件。
通過 write_apng 函數(shù)可以將數(shù)組序列保存為 PNG 動畫(APNG)文件 。
通過AnimatedPNGWriter類可以將Matplotlib 保存為PNG動畫文件。
numpngw庫的依賴包是numpy和setuptools。
numpngw+matplotlib實現(xiàn)png動畫
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)
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')
關鍵代碼解讀
# 導入AnimatedPNGWriter from numpngw import AnimatedPNGWriter # 初始化AnimatedPNGWriter writer = AnimatedPNGWriter(fps=12) # 將save函數(shù)中的writer參數(shù)設為AnimatedPNGWriter實例 animator.save("love.png", writer=writer)
看完上述內(nèi)容,你們對使用numpngw與matplotlib怎么生成一個png動畫有進一步的了解嗎?如果還想了解更多知識或者相關內(nèi)容,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。
分享名稱:使用numpngw與matplotlib怎么生成一個png動畫-創(chuàng)新互聯(lián)
網(wǎng)站鏈接:http://aaarwkj.com/article18/cccddp.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設、網(wǎng)站建設、標簽優(yōu)化、ChatGPT、用戶體驗、電子商務
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容