From 3eb364b143e6ddc857e480a35d5fed77118046a9 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 25 Oct 2022 21:00:09 +0200 Subject: [PATCH] restore -coalesce --- files/helpers/media.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/media.py b/files/helpers/media.py index 07a40886cd..c04fab482f 100644 --- a/files/helpers/media.py +++ b/files/helpers/media.py @@ -131,7 +131,7 @@ def process_image(filename=None, resize=0, trim=False, uploader=None, patron=Fal abort(413, f"Max image/audio size is {MAX_IMAGE_AUDIO_SIZE_MB} MB ({MAX_IMAGE_AUDIO_SIZE_MB_PATRON} MB for paypigs)") with Image.open(filename) as i: - params = ["convert", filename, "-quality", "88", "-define", "webp:method=6"] + params = ["convert", "-coalesce", filename, "-quality", "88", "-define", "webp:method=6"] if trim and len(list(Iterator(i))) == 1: params.append("-trim") if resize and i.width > resize: