Merge pull request 'convert to RGB (from ARGB) when saving as JPEG' (#288) from jmplace/ScoDoc-Lille:fix_rgb_exception into master

Reviewed-on: #288
This commit is contained in:
Emmanuel Viennet 2022-01-22 12:33:15 +01:00
commit f106cbe99f
1 changed files with 4 additions and 2 deletions

View File

@ -266,14 +266,16 @@ def _return_logo(name="header", dept_id="", small=False, strict: bool = True):
suffix = logo.suffix
if small:
with PILImage.open(logo.filepath) as im:
im.thumbnail(SMALL_SIZE)
stream = io.BytesIO()
# on garde le même format (on pourrait plus simplement générer systématiquement du JPEG)
fmt = { # adapt suffix to be compliant with PIL save format
"PNG": "PNG",
"JPG": "JPEG",
"JPEG": "JPEG",
}[suffix.upper()]
if fmt == "JPEG":
im = im.convert("RGB")
im.thumbnail(SMALL_SIZE)
stream = io.BytesIO()
im.save(stream, fmt)
stream.seek(0)
return send_file(stream, mimetype=f"image/{fmt}")