Python Forum

Full Version: PySimpleGUI Try Except
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all,

I'm trying to get my program to try to make a layout with an sg.Image element, however the file path is a variable so it can update the image in the window based on the user input. However I need a way that it doesn't crash when the image isnt in the folder. I've tried putting try and except statements in several places but wondered if there's another way?

Thanks,
James
Hi all,

I found the solution in the end :

try:
    imageView['imageview'].update(filename = (r'your path\\yourimage'+".jpg"))
                            
    while True:             
        event,values = imageView.read()
        if event == sg.WIN_CLOSED:
            break
except:
        sg.popup("Image not found")