Preview:
from tkinter import *

root = Tk()
root.title('title')
root.geometry("1000x1000")
photo = PhotoImage(file="image.png")
label = Label(root, image=photo)
label.grid(padx=1, pady=1)

root.mainloop()
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter