mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-14 11:57:44 +00:00
use Image.LANCZOS instead of Image.ANTIALIAS for thumbnail resize (#15876)
Image.ANTIALIAS is not defined in current pillow releases. Since ANTIALIAS was just using LANCZOS anyways, this is just a cosmetic change, but makes synapse work with most recent pillow releases. Signed-off-by: Giovanni Harting <539@idlegandalf.com>
This commit is contained in:
parent
c8e81898b6
commit
c303eca8cc
2 changed files with 2 additions and 1 deletions
1
changelog.d/15876.bugfix
Normal file
1
changelog.d/15876.bugfix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Correctly resize thumbnails with pillow version >=10.
|
|
@ -131,7 +131,7 @@ class Thumbnailer:
|
||||||
else:
|
else:
|
||||||
with self.image:
|
with self.image:
|
||||||
self.image = self.image.convert("RGB")
|
self.image = self.image.convert("RGB")
|
||||||
return self.image.resize((width, height), Image.ANTIALIAS)
|
return self.image.resize((width, height), Image.LANCZOS)
|
||||||
|
|
||||||
def scale(self, width: int, height: int, output_type: str) -> BytesIO:
|
def scale(self, width: int, height: int, output_type: str) -> BytesIO:
|
||||||
"""Rescales the image to the given dimensions.
|
"""Rescales the image to the given dimensions.
|
||||||
|
|
Loading…
Reference in a new issue