0
How to import image from desktop in python
Please take a example
1 Answer
+ 2
With tkinter you can write:
from tkinter import PhotoImage
Logo = PhotoImage (file="your image address")
And then you can use Logo where you need.
Although tkinter have limit options in image types and you can use pillow lib or PyQt gui toolkit instead.