from kivy.app import App from kivy.uix.image import Image class TesztApp(App): def build(self): img = Image(source='kep.png', size_hint=(1, .5), pos_hint={'center_x':.5, 'center_y':.5}) return img TesztApp().run()