From 8373c388402db3e8bf6a5b6595678cc53d4ab078 Mon Sep 17 00:00:00 2001 From: Peter Rowlands Date: Sun, 15 Mar 2020 20:02:10 +0900 Subject: [PATCH] Drop alpha channels when computing frame delta --- src/PIL/PngImagePlugin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/PIL/PngImagePlugin.py b/src/PIL/PngImagePlugin.py index dd3673b53..d74f3991b 100644 --- a/src/PIL/PngImagePlugin.py +++ b/src/PIL/PngImagePlugin.py @@ -1058,7 +1058,9 @@ def _write_multiple_frames(im, fp, chunk, rawmode): base_im = im_frames[-2]["im"] else: base_im = previous["im"] - delta = ImageChops.subtract_modulo(im_frame, base_im) + delta = ImageChops.subtract_modulo( + im_frame.convert("RGB"), base_im.convert("RGB") + ) bbox = delta.getbbox() if ( not bbox