Created
July 11, 2013 05:32
-
-
Save amirkheirabadi73/5972766 to your computer and use it in GitHub Desktop.
Show Image In Screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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