• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
November 30, 2021 |5.9K Views
Image Viewer App in Python using Tkinter
  Share   Like
Description
Discussion

In this Python project, we will learn how to make image viewer Applications in Python using Tkinter and PIL library. Python has varieties of libraries to create our own GUI application easily and Tkinter is an inbuilt library and it is a great library to make GUI applications in Python, it is a standard Python interface to the Tk GUI toolkit shipped with Python. Python with Tkinter outputs the fastest and easiest way to create GUI applications. And for image processing, we will use the PIL library, It is the de facto image processing package. It is a lightweight image processing tool which can be used for editing images, creating images, and saving images. It is not inbuilt like Tkinter so we have to install it before using it. Here we will create a simple GUI application - Image Viewer App in Python using Tkinter, where we can see our photos using this application. For this Tkinter and PIL library will help to create this application easily. While making this project we will explore some functions of Python, PIL, and Tkinter and we can use them in another project. 

Related Article - https://www.geeksforgeeks.org/image-viewer-app-in-python-using-tkinter/

Read More