Making the layout of our application

This final project is going to pull on the knowledge both from the drawing app we made, and from the things we learned about image editing. What we are making is an application that we can use to host all of the filters we made the other day, as well as some other functionalities.

Like last time, we will want to include the following lines in our code to create our initial window and set its size. We can make this one bigger than the last project.

window = Tk()
window.geometry("1500x800")

After that, we can set the title of this app we are making. Since we are making what is essentially an image editor, We’ll give it the name “Shotophop”

window.title("Shotophop")