Question: import tkinter as tk from tkinter import filedialog from PIL import Image, ImageOps, ImageTk, ImageFilter from tkinter import ttk root = tk . Tk (

import tkinter as tk
from tkinter import filedialog
from PIL import Image, ImageOps, ImageTk, ImageFilter
from tkinter import ttk
root = tk.Tk()
root.geometry("1000x800")
root.title("Image marco martinez ") # change name
root.config(bg='white')
my_image =""
file_path ="c:/Temp"
### This is where you put the FUNCTIONS! ###
### This is where you put the WIDGETS! ###
left_frame = tk.Frame(root, width=200, height=800, bg="light gray")
left_frame.pack(side="left", fill='y')
canvas = tk.Canvas(root, width=800, height=1000)
canvas.pack()
root.mainloop()
C:\temp\CIS105 Coins.jpg how to add path to this image

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!