mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-19 20:43:09 +03:00
Use current frame for transparency detection
This commit is contained in:
parent
d1f40a94ff
commit
31d36e6b70
|
@ -243,7 +243,9 @@ def _save_all(im: Image.Image, fp: IO[bytes], filename: str | bytes) -> None:
|
||||||
# Make sure image mode is supported
|
# Make sure image mode is supported
|
||||||
frame = ims
|
frame = ims
|
||||||
if frame.mode not in ("RGBX", "RGBA", "RGB"):
|
if frame.mode not in ("RGBX", "RGBA", "RGB"):
|
||||||
frame = frame.convert("RGBA" if im.has_transparency_data else "RGB")
|
frame = frame.convert(
|
||||||
|
"RGBA" if frame.has_transparency_data else "RGB"
|
||||||
|
)
|
||||||
|
|
||||||
# Append the frame to the animation encoder
|
# Append the frame to the animation encoder
|
||||||
enc.add(
|
enc.add(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user