import tkinter

root = tkinter.Tk()
root.title('貓咪相似度診斷程式')
root.resizable(False, False)
canvas = tkinter.Canvas(root, width = 800, height = 600)
canvas.pack()
gazou = tkinter.PhotoImage(file = 'images/sumire.png')
canvas.create_image(400, 300, image = gazou)
button = tkinter.Button(text = '診斷', font = ('Times New Roman', 32), bg = 'lightgreen')
button.place(x = 400, y = 480)
text = tkinter.Text(width = 40, height = 5, font = ('Times New Roman', 16))
text.place(x = 320, y = 30)
root.mainloop()