-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Overlapping frames in animated GIF and PNG #5032
Labels
Comments
radarhere
changed the title
AnimGIF shows wrong frame
Overlapping frames in animated GIF and PNG
Nov 6, 2020
I only see the issue with APNG files not with GIF. |
AnimGIF renders wrong (at least for me using pillow 8.0.1).
import PIL.Image
image = PIL.Image.open("/tmp/98246874-2e18a800-1f73-11eb-8583-f2c1f7d293f0.gif")
for frame in PIL.ImageSequence.Iterator(image):
last_frame = frame
last_frame.show() |
The GIF part of this should be resolved by #5125 |
The GIF part of this should be fixed in Pillow 8.1.0, due to be released on January 2. |
Thanks for the effort! |
The APNG part of this should now also be fixed in Pillow 8.1.0 |
@radarhere |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This image:
Testcase (frame is interleaved - tested with PIL7 and PIL8):
The text was updated successfully, but these errors were encountered: