CustomTkinter
CustomTkinter copied to clipboard
Image in label doesn't get rendered
customtkinter.CTkLabel(master=boxframe,image=ImageTk.PhotoImage(Image.open("LogoText.png"))).pack(padx=0, pady=10)
The Image is invisible, but the label is there. Where my image should be is a gap with the size of my image. I also don't get an error.

You can replace it with the CTkButton with fg_color=None, hover=False, text="", image=ImageTk.PhotoImage(Image.open("LogoText.png")
Thanks :) @Akascape
You need to set text="" for the CTkLabel to display the image correctly.
Should work fine now.