enlarge images narrower than 200px

ironpython
András Veres-Szentkirályi 2013-11-05 00:02:58 +01:00
rodzic d50797b69c
commit 28098de403
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -72,6 +72,10 @@ class ProgressCanvas(Canvas):
width, height = image.size
if height / float(width) > 1.5:
width *= 2
elif width < 200:
width *= 2
height *= 2
if (width, height) != image.size:
image = image.resize((width, height))
Canvas.__init__(self, master, width=width, height=height)
self.tk_img = ImageTk.PhotoImage(image)