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

changes because of slow loading of bottoms

Because ImageTK.PhotoImage and Image.resizing have problems witht zeros in alphachannel, i masked the image to eliminate the 0s
This commit is contained in:
cardset 2022-01-24 14:48:17 +01:00
parent 54e34bb4c0
commit dc98900763
2 changed files with 57 additions and 28 deletions

View file

@ -188,34 +188,37 @@ class Images:
cs_dir=self.cs.dir, fname=name))
if progress:
progress.update(step=1)
# load bottoms
for i in range(self.cs.nbottoms):
name = "bottom%02d" % (i + 1)
bottom = self.__loadBottom(name, color='black')
if bottom is not None:
self._bottom_positive.append(bottom)
if progress:
progress.update(step=pstep)
# load negative bottoms
name = "bottom%02d-n" % (i + 1)
bottom = self.__loadBottom(name, color='white')
if bottom is not None:
self._bottom_negative.append(bottom)
if progress:
progress.update(step=pstep)
# load letters
for rank in range(self.cs.nletters):
name = "l%02d" % (rank + 1)
self._letter_positive.append(
self.__loadBottom(name, color='black'))
if progress:
progress.update(step=pstep)
# load negative letters
name = "l%02d-n" % (rank + 1)
self._letter_negative.append(
self.__loadBottom(name, color='white'))
if progress:
progress.update(step=pstep)
if not USE_PIL:
# load bottoms
for i in range(self.cs.nbottoms):
name = "bottom%02d" % (i + 1)
bottom = self.__loadBottom(name, color='black')
if bottom is not None:
self._bottom_positive.append(bottom)
if progress:
progress.update(step=pstep)
# load negative bottoms
name = "bottom%02d-n" % (i + 1)
bottom = self.__loadBottom(name, color='white')
if bottom is not None:
self._bottom_negative.append(bottom)
if progress:
progress.update(step=pstep)
# load letters
for rank in range(self.cs.nletters):
name = "l%02d" % (rank + 1)
self._letter_positive.append(
self.__loadBottom(name, color='black'))
if progress:
progress.update(step=pstep)
# load negative letters
name = "l%02d-n" % (rank + 1)
self._letter_negative.append(
self.__loadBottom(name, color='white'))
if progress:
progress.update(step=pstep)
# shadow
if not USE_PIL:
for i in range(self.cs.nshadows):

View file

@ -248,8 +248,13 @@ def after_cancel(t):
if Image:
class PIL_Image(ImageTk.PhotoImage):
def __init__(self, file=None, image=None, pil_image_orig=None):
if file:
image = Image.open(file).convert('RGBA')
# eliminates the 0 in alphachannel
image = masking(image)
ImageTk.PhotoImage.__init__(self, image)
self._pil_image = image
if pil_image_orig:
@ -266,12 +271,32 @@ if Image:
return im
def resize(self, xf, yf):
w, h = self._pil_image_orig.size
w0, h0 = int(w*xf), int(h*yf)
im = self._pil_image_orig.resize((w0, h0), Image.ANTIALIAS)
im = masking(im)
return PIL_Image(image=im, pil_image_orig=self._pil_image_orig)
def masking(image):
# eliminates the 0 in alphachannel
# because PhotoImage and Rezising
# have problems with it
image = image.convert("RGBA") # make sure it has alphachannel
mask = image.copy()
# important alpha must be bigger than 0
mask.putalpha(1)
mask.paste(image, (0, 0), image)
image = mask.copy()
return image
def makeImage(file=None, data=None, dither=None, alpha=None):
kw = {}
if data is None:
@ -401,6 +426,7 @@ def createBottom(maskimage, color='white', backfile=None):
return None
maskimage = maskimage._pil_image
out = _createBottomImage(maskimage, color, backfile)
return PIL_Image(image=out)