Не могу вставить изображение в дочернее окно tkinter
from tkinter import *
from tkinter import messagebox
def on_closing():
if messagebox.askokcancel('Выход', 'Хотите выйти из приложения'):
tk.destroy()
#ОСНОВНОЕ ОКНО
#НАСТРОЙКИ ОКНА
tk = Tk()
tk.protocol('WM_DELETE_WINDOW', on_closing)
tk.title('Меню')
tk.resizable(0,0)
tk.wm_attributes('-topmost', 1)
tk.iconbitmap('icon.ico')
canvas = Canvas(tk, height=800, width=800, highlightthickness=0)
canvas.pack()
#ЗАДНИЙ ФОН
backg = PhotoImage(file='PARK.png')
id_backg = canvas.create_image(399,400, anchor=CENTER, image=backg)
#CREATOR KIRILL FEDOTOV
author = PhotoImage(file='creat.png')
id_imgauthor = canvas.create_image(790,800, anchor=SE, image=author)
Ниже вставляю изображение и ничего не получается, просто пустое окно появляется
#ВКЛЮЧЕНИЕ ИГРЫ
def game():
window_game = Toplevel(tk)
window_game.title('Игра')
window_game.resizable(0, 0)
window_game.iconbitmap('icon.ico')
canvas_1 = Canvas(window_game, height=800, width=800, highlightthickness=0)
canvas_1.pack()
backg_game = PhotoImage(file='фон для игры.png')
canvas_1.create_image(399, 400, anchor=CENTER, image=backg_game)
#ВКЛЮЧЕНИЕ НАСТРОЕЧЕК
def settings():
pass
#ВКЛЮЧЕНИЕ ОПИСАНИЯ
def desc():
pass
#КНОПКА ИГРАТЬ
our_button_1 = PhotoImage(file='КНОПКА1 (1).png')
id_button_1 = Button(tk, image=our_button_1, highlightthickness=0, bd=0, width=350, height=100, command=game,bg='#78DBE2',activebackground='#78DBE2')
id_button_1.place(x=230, y=230)
#КНОПКА УПРАВЛЕНИЕ
our_button_2 = PhotoImage(file='УПРавление.png')
id_button_2 = Button(tk, image=our_button_2, highlightthickness=0, bd=0, width=350, height=100, command=settings,bg='#78DBE2',activebackground='#78DBE2')
id_button_2.place(x=230, y=350)
#КНОПКА ОПИСАНИЕ
our_button_3 = PhotoImage(file='Описание.png')
id_button_3 = Button(tk, image=our_button_3, highlightthickness=0, bd=0, width=350, height=100, command=desc,bg='#78DBE2',activebackground='#78DBE2')
id_button_3.place(x=230, y=470)
#КВАДРАТ МЕНЮ
canvas.create_rectangle(225,210,605,600, outline='#4e8efc', fill='#78DBE2')
tk.mainloop()