python 顯示 gif 動圖

來源:互聯網
上載者:User

下面所介紹的方法不僅可以顯示gif動圖,而且可以顯示圖片
首先引入pyglet包

import pyglet

主方法源碼:

# 在工作目錄中選擇一個gif動畫檔案ag_file = "111.gif"animation = pyglet.resource.animation(ag_file)sprite = pyglet.sprite.Sprite(animation)# 建立一個視窗並將其設定為映像大小win = pyglet.window.Window(width=sprite.width, height=sprite.height)# 設定視窗背景顏色 = r, g, b, alpha# 每個值從 0.0 到 1.0green = 0, 1, 0, 1pyglet.gl.glClearColor(*green)@win.eventdef on_draw():    win.clear()    sprite.draw()pyglet.app.run()

運行結果截圖:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.