我想用一個運行一次然後停止的gif動畫製作一個kivy程序。 我將anim_loop設置爲1,但它一直運行一遍又一遍。 下面是代碼:Kivy Gif動畫運行頻率過高
Root = Builder.load_string('''
Image:
source: 'streifen1.gif'
size_hint_y: 1
anim_loop: 1
''')
class TTT(App):
def build(self):
Window.clearcolor = (0, 0.5, 1, 1)# sets the backgroundcolor
return Root #returnst the kv string and therefore the root widget`
您使用的是kivy 1.9嗎?你是否可以嘗試一下你的圖片而不是一個gif,這可能會更好地支持? – inclement
@inclement我該如何做到這一點,在文檔中沒有任何關於它的內容:http://kivy.org/docs/api-kivy.uix.image.html?highlight=image#kivy.uix.image – Gilgamesch
製作一個包含你的圖像的zip文件,並將圖像源指向該文件名。 – inclement