Resimli buton positions

butona resim atadık ancak place yaptığımda hata veriyor yardımcı olur musunuz

def gui(geometry, title):
    root = Tk()
    root.geometry(f"{geometry}")
    root.title(f"{title}")
    picture = PhotoImage(file='C:\\Users\\Ali Tabak\\Desktop\\Software\\PycharmProjects\\asistanım\\mikrofon.png')
    speak = Button(root, image=picture, borderwidth=0, command=lambda: Thread(target=mainCommands).start())
    speak.image = picture
    isim1=tk.Label(root,text="CARLA",fg="blue",font="Times 20 italic")
    isim1.pack()
    speak.pack()