1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

remove leftover prints

This commit is contained in:
Shlomi Fish 2019-05-16 22:27:26 +03:00
parent 9c7df57ba8
commit e473e45bc1
3 changed files with 1 additions and 3 deletions

View file

@ -147,7 +147,6 @@ class Images:
r = max(self.CARDW / 40.0, self.CARDH / 60.0) r = max(self.CARDW / 40.0, self.CARDH / 60.0)
r = max(2, int(round(r))) r = max(2, int(round(r)))
# im2 = PIL_Image(image=im1.subsample(r)) # im2 = PIL_Image(image=im1.subsample(r))
print(type(im1))
im1 = PIL_Image(image=im1) im1 = PIL_Image(image=im1)
im2 = im1.subsample(r) im2 = im1.subsample(r)
self._back.append(ImagesCardback(len(self._back), name, im1, im2)) self._back.append(ImagesCardback(len(self._back), name, im1, im2))

View file

@ -50,7 +50,7 @@ class SVGManager:
return None return None
d = self.d d = self.d
d.set_card_width(width) d.set_card_width(width)
print("wh", d.get_card_width(), width, d.get_card_height(), height) # print("wh", d.get_card_width(), width, d.get_card_height(), height)
# d.set_card_height(height) # d.set_card_height(height)
image = Image.fromqpixmap( image = Image.fromqpixmap(
d.get_card_pixmap( d.get_card_pixmap(

View file

@ -261,7 +261,6 @@ if Image:
if isinstance(image, type(self)): if isinstance(image, type(self)):
assert 0 assert 0
image = image._pil_image image = image._pil_image
print(type(image))
# if not isinstance(image, ImageTk.PhotoImage): # if not isinstance(image, ImageTk.PhotoImage):
ImageTk.PhotoImage.__init__(self, image=image) ImageTk.PhotoImage.__init__(self, image=image)
self._pil_image = image self._pil_image = image