I loaded an image on my turtle screen and I tiried to reduce it's size using tkinter but the zoom function does not accept decimals meaning it can't reduce sizeso I will like to know if there is any way to do it. Here's what I did
from turtle import Shape, Screen, Turtle
from tkinter import PhotoImage
wn = Screen()
wn.setup(width = 700, height = 1500)
wn.bgcolor('white')
pic = PhotoImage(file = "2.gif").zoom(1.1, 1.1)
wn.addshape('pic', Shape("image", pic))
tr = Turtle("pic")
while True:
wn.update()
