-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Animated gif displays frames incorrectly #1525
Copy link
Copy link
Closed
Labels
BugAny unexpected behavior, until confirmed feature.Any unexpected behavior, until confirmed feature.ConversionGIFPalette
Description
I'm having the same exact problem as #634 but that issue was "fixed".

When I seperate the frames using convert -coalesce animation.gif target.png in ImageMagick, the frames come out looking perfect, but with pillow...
import PIL
import PIL.Image
i = PIL.Image.open('test.gif')
i.show() # correct image displays on left
i.seek(i.tell() + 1)
i.show() # image is incorrect on rightReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
BugAny unexpected behavior, until confirmed feature.Any unexpected behavior, until confirmed feature.ConversionGIFPalette