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
This image: dancing.zip
Testcase:
import PIL.Image with PIL.Image.open('dancing.webp') as img: assert img.mode == 'RGB' frames = [] for frame in PIL.ImageSequence.Iterator(img): frame = frame.resize( img.size, PIL.Image.BICUBIC ) assert frame.mode == 'RGB' frames.append( frame ) frames[0].save( 'result.gif', format='GIF', version='GIF89a', save_all=True, append_images=frames[1:], duration=30, loop=0 )
The text was updated successfully, but these errors were encountered:
I've created PR #6792 to resolve this.
Sorry, something went wrong.
Merge pull request #6792 from radarhere/webp_gif
aab4adc
Resolves #6791
Successfully merging a pull request may close this issue.
This image: dancing.zip
Testcase:
The text was updated successfully, but these errors were encountered: