How to display an Image in Python


There are various modules that you can make use of to display Images using Python code. We will take a look at the most used one i.e. Pillow (PIL).


Example: Display Image

import requests
from PIL import Image
from io import BytesIO

image_URL = 'https://code2care.org/code2care-logo.png'
response = requests.get(image_URL)
img = Image.open(BytesIO(response.content))

img.show()
Display Image using Python Code

Facing issues? Have Questions? Post them here! I am happy to answer!

Author Info:

Rakesh (He/Him) has over 14+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org

Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap