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:
parent
9c7df57ba8
commit
e473e45bc1
3 changed files with 1 additions and 3 deletions
|
@ -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))
|
||||||
|
|
|
@ -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(
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue