Skip to content

Instantly share code, notes, and snippets.

@amirkheirabadi73
Created July 11, 2013 05:32
Show Gist options
  • Save amirkheirabadi73/5972766 to your computer and use it in GitHub Desktop.
Save amirkheirabadi73/5972766 to your computer and use it in GitHub Desktop.
Show Image In Screen
from kivy.app import App
from kivy.uix.image import Image
from kivy.uix.widget import Widget
class showimage(Image):
pass
class MyApp(App):
def build(self):
return showimage(source = "Wall Mania 055 - 23.jpg" , pos = (50 , 50),size=(200,200))
if __name__ == '__main__':
MyApp().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment