I need to open an image for the user to view, wait a second, then close that image and open a new one from an array.
I have tried Image.open() in PIL however, I have read that we cannot close the image afterwards.
I have tried using subprocess, however, I for some reason cannot close the image. I have tried kill() and terminate() here, and have an open question for this here: Close Image with subprocess If you know what is wrong with my code using subprocess, I'd be happy to hear!
What is another way I can open and close an image without using PIL or subprocess?