pyglet显示图片

##QQ群:476842922(欢迎加群讨论学习)
import pyglet

window = pyglet.window.Window()
image = pyglet.resource.image('image.png')

@window.event
def on_draw():
    window.clear()
    image.blit(0, 0)

pyglet.app.run()

程序运行有一定延时

你可能感兴趣的:(代码)