Answers for "how to use image files in tkinter"

5

how to add a image in tkinter

from tkinter import *
root=Tk()
img=PhotoImage(file='sunshine.jpg')
Label(root,image=img).pack()
root.mainloop()
Posted by: Guest on August-03-2020
0

image in tkinter

import tkinter as tk
window = tk()
canvas = Canvas(window, width=300, height=300)
image = PhotoImage('path')
canvas.create_image(height=40, width=40, img=image)
Posted by: Guest on February-28-2021

Code answers related to "how to use image files in tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language