I have looked everywhere to find a way to set the size of an image. The image is set to a url. I have found other questions on the site but none of them have worked.
import urllib.request, base64
u = urllib.request.urlopen(currentWeatherIconURL)
raw_data = u.read()
u.close()
b64_data = base64.encodestring(raw_data)
image = PhotoImage(data=b64_data)
label = Label(image=image, bg="White")
label.pack()
That is the code that creates the image, how would I set the size of the image