mirror of https://github.com/kivy/kivy.git
26 lines
541 B
Python
26 lines
541 B
Python
import kivy
|
|
from kivy.app import App
|
|
from kivy.uix.behaviors import CoverBehavior
|
|
from kivy.uix.image import Image
|
|
|
|
|
|
class CoverImage(CoverBehavior, Image):
|
|
"""Image using cover behavior.
|
|
"""
|
|
|
|
def __init__(self, **kwargs):
|
|
super(CoverImage, self).__init__(**kwargs)
|
|
texture = self._coreimage.texture
|
|
self.reference_size = texture.size
|
|
self.texture = texture
|
|
|
|
|
|
class MainApp(App):
|
|
|
|
def build(self):
|
|
return CoverImage(source='image.jpg')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
MainApp().run()
|