I'm using the following script to display an image and it's working. I would like to send the output (image) to a secondary display which connected through HDMI. What's the best way to implement this?
from PIL import Image
im = Image.open("path_to_file/1.png")
im.show()
I found the solution below (screeninfo
package) to get monitor info, etc. Not sure how it can be used to send the output to a different screen.