Merge pull request #645 from AltoRetrato/patch-1

Allow Image update to set size
This commit is contained in:
MikeTheWatchGuy 2018-11-02 17:48:42 -04:00 committed by GitHub
commit 32bd271c69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -1518,7 +1518,7 @@ class Image(Element):
tooltip=tooltip) tooltip=tooltip)
return return
def Update(self, filename=None, data=None): def Update(self, filename=None, data=None, size=(None,None)):
if filename is not None: if filename is not None:
image = tk.PhotoImage(file=filename) image = tk.PhotoImage(file=filename)
elif data is not None: elif data is not None:
@ -1531,9 +1531,8 @@ class Image(Element):
# image = data # image = data
else: else:
return return
width, height = image.width(), image.height() width, height = size[0] or image.width(), size[1] or image.height()
self.tktext_label.configure(image=image, width=width, height=height) self.tktext_label.configure(image=image, width=width, height=height)
# self.tktext_label.configure(image=image)
self.tktext_label.image = image self.tktext_label.image = image
def __del__(self): def __del__(self):