

These three widgets are lined up horizontally in the form from left-to-right. Then you want to add three more widgets underneath it. In this case, you are telling it that you want to create an Image widget at the top of your Window.

PySimpleGUI uses Python lists to lay out the user interface. These 11 lines of code define how your Elements are laid out. Window = sg.Window("Image Viewer", elements) Now you're ready to learn about the main() function: def main(): You import PySimpleGUI and the modules you need from PIL, and set file_types to the file selection choices for the Browse button in the form, which will default to JPEG. Let's break it down into a couple of smaller pieces: # image_viewer.py If event = "Exit" or event = sg.WIN_CLOSED: Window = sg.Window("Image Viewer", layout) Then add this code to the file: # image_viewer.py To see how, create a new file and name it image_viewer.py. PySimpleGUI lets you create a simple image viewer in less than 50 lines. Now that you have your dependencies installed, you can create a brand new application! Creating an Image Viewer You will also need Pillow because Tkinter only supports GIF and PGM/PPM image types.įortunately, you can install both of these packages easily with pip: python3 -m pip install PySimpleGUI Pillow You need to install PySimpleGUI as it is not included with Python. You will be using the regular version of PySimpleGUI, which wraps Tkinter, rather than its wxPython or PyQt variants.
#Simple divider line image how to#
In this tutorial, you will learn how to use PySimpleGUI to create a simple Image Viewer. PySimpleGUI makes creating applications easy.
