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
x
25
25
1
# importing image object from PIL
2
from PIL import ImageOps, Image
3
import PIL.Image
4
5
6
# creating an image object
7
img = Image.open(r"test.png").convert("L")
8
9
# image colorize function
10
img = ImageOps.colorize(img, black="red", white="white")
11
12
# save the image as new.png
13
img.save("new.png")
14
15
from tkinter import *
16
17
root = Tk()
18
19
# set the img1 variable as the image we just created
20
img1 = PhotoImage(file="new.png")
21
b = Button(image=img1)
22
b.pack()
23
24
root.mainloop()
25