This code works for me, also you should consider if you have any other button or labels in that window and you not use .place()
it will not work properly.
from Tkinter import*
from PIL import Image, ImageTk
img = Image.open("path/x.png")
photo=ImageTk.PhotoImage(img)
lab=Label(image=photo).place(x=50,y=50)