Skip to content
Advertisement

Add color filter to Tk.Label

I have a tk.Label object with an image (via tk.Label(self.root,image='image.png')) and want to add a color filter to it, i.e. make the image more red. How can I do that?

Advertisement

Answer

You can modify the image with PIL, and save it as a new file. In Tkinter, you can use PhotoImage(file="file.png") to use the image as a button:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement