本文整理汇总了Python中kivy.uix.image.Image.source方法的典型用法代码示例。如果您正苦于以下问题:Python Image.source方法的具体用法?Python Image.source怎么用?Python Image.source使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kivy.uix.image.Image
的用法示例。
在下文中一共展示了Image.source方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _draw_hearts
# 需要导入模块: from kivy.uix.image import Image [as 别名]
# 或者: from kivy.uix.image.Image import source [as 别名]
def _draw_hearts(self):
self.clear_widgets()
i = 0
while i < (self.max_health / 4):
heart = Image(size=(80, 80))
heart.source = 'img/heart-' + str(self.hearts[i]) + '.png'
self.add_widget(heart)
i += 1
示例2: back_to
# 需要导入模块: from kivy.uix.image import Image [as 别名]
# 或者: from kivy.uix.image.Image import source [as 别名]
def back_to(self):
# Restores the home screen
self.lay_center.clear_widgets()
self.clear_widgets()
self.lay_center_bt.clear_widgets()
image_back_ground = Image()
image_back_ground.source = 'image/background_ppmt_main.png'
button_new_open_close = ButtonNewOpen(new_proj=self.new_project, open_proj=self.open_project)
self.add_widget(image_back_ground)
self.lay_center_bt.add_widget(button_new_open_close)
self.lay_center.add_widget(self.lay_center_bt)
self.lay_center.add_widget(self.lay_last_project)
self.add_widget(self.lay_center)