resize
fonksiyonunu kullanabilirsiniz.
Örnek:
def on_button_press(label, img, colorize=False):
if colorize:
bg = [i / 256 for i in label.winfo_rgb("SystemButtonFace")]
img = img.convert(mode="RGBA")
img = img.split()[3]
img = img.convert(mode="L")
img = ImageOps.colorize(img, black=bg, white="red")
img = img.resize((100, 100))
img = ImageTk.PhotoImage(img)
label.img = img
label["image"] = img