We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Reverse a gif get it much bigger size on disk
Still the original size or only a bit more
latest Pillow and 3.6 Python
from PIL import Image, ImageSequence from PIL import ImagePalette with Image.open('sd.gif') as im: if im.is_animated: frames = [f.copy() for f in ImageSequence.Iterator(im)] frames.reverse() frames[0].save('out.gif', save_all=True, append_images = frames[1:])
The text was updated successfully, but these errors were encountered:
Duplicate of #617.
Sorry, something went wrong.
No branches or pull requests
What did you do?
Reverse a gif get it much bigger size on disk
What did you expect to happen?
Still the original size or only a bit more
What versions of Pillow and Python are you using?
latest Pillow and 3.6 Python
The text was updated successfully, but these errors were encountered: