(Python 3.4, PIL 1.1.7, Pillow 2.5.1)
I expected this to copy the original GIF.
from PIL import Image
im = Image.open(filename)
im.save('temp.gif')
Instead, it saves the first frame as a still.
What am I doing wrong?
(Python 3.4, PIL 1.1.7, Pillow 2.5.1)
I expected this to copy the original GIF.
from PIL import Image
im = Image.open(filename)
im.save('temp.gif')
Instead, it saves the first frame as a still.
What am I doing wrong?
Use the script found on the Pillow Github, here.
One can see that the new version of gifmaker script simply uses save method with special kwargs for GIF.
As the documentation states (https://pillow.readthedocs.org/en/latest/handbook/image-file-formats.html#saving-sequences):