창에 띄운 이미지가 조금 커 보이니 이미지 크기를 줄여 봅시다. 이미지 크기는 PhotoImage 클래스의 subsample() 메서드로 조절합니다.
root = Tk()
root.title('my first tkinter')
root.geometry('800x400')
letsgetit = PhotoImage(file='lets get it.png')
letsgetit = letsgetit.subsample(2, 2)
img_label = Label(root, image=letsgetit)
img_label.pack()
root.mainloop()
실행결과