Comment afficher une image à l'aide de kivy

Comment puis-je afficher une image dans mon pwd?

import kivy
from kivy.app import App
from kivy.uix.button import Button
from kivy.uix.image import Image


class MyApp(App):
  def build(self):
    return Image('b1.png')

MyApp().run()

OriginalL'auteur Rajeev | 2014-05-14