Kivy Crash Course – Image & AsyncImage Example

This is our sixth article on Kivy Crash Course, in this article we are going to to learn about Image & AsyncImage Example. so the Image widget is used to display an image. to load an image asynchronously (for example from an external webserver), use the AsyncImage subclass.

 

 

 

Also you can watch the video for this article

 

 

 

 

Kivy Crash Course Articles

1: Kivy Crash Course Introduction & Installation

2: Introduction to Kv Design Language 

3: Kivy Button with Callbacks

4: Kivy Layout Management 

5: Kivy How to Create CheckBox 

 

 

 

So there are two ways that you can create images in kivy, the first way is that you can create image using the kivy.uix.image module, and the second way is using the kivy design language, so first let’s just do the first way.

 

 

 

First let’s use an image from our working directory, i have already copied a image in my working directory.

 

 

So you can see at the top first we have created the object of Image class, and we have passed the image name as source to the constructor of the class. also we have given position to the image with opacity. if you run the code this will be the result.

 

 

Kivy Crash Course - Image & AsyncImage Example
Kivy Crash Course – Image & AsyncImage Example

 

 

 

 

Now if you want to load an image from the internet, for this purpose you need to use AsyncImage.

 

 

 

 

If you run the code this will be the result

Kivy Async Image
Kivy Async Image

 

 

 

 

So now let’s create the image using the kivy file, so first of all this is my python code. in this code basically i have just created a new class that extends from the image class and i have returned that class in my main app class.

 

 

 

 

Now this is our .kv file, and i have name the file imagewindow.kv, make sure that this name should similar to the main app class name, in my case it is ImageWindow class.

 

 

 

 

If you run the code this will be the result

Kivy Image Example
Kivy Image Example

 

Subscribe and Get Free Video Courses & Articles in your Email

 

Codeloop
Share via
Copy link
Powered by Social Snap
×