-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Add support for animated WebP files #2761
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
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
6e47661
Add support for writing animated webp files
jd20 482d803
Add support for reading animated WebP files
jd20 cd12a48
- Support non-alpha modes with WebPAnimDecoder
jd20 356da80
Fix metadata test for python3
jd20 b46cf52
Fix 'for' loop initial declaration error
jd20 e534991
- Styling changes to be C89-conformant
jd20 c18d26b
- Conditonally compile animation support, only if the mux.h and demux…
jd20 80b9624
Fix tests to support different output modes (RGB vs RGBX)
jd20 247c2f5
Use PyErr_* functions instead of fprintf for error handling in _webp.c
jd20 5b2dd29
Fix invalid_args test for older versions of libwebp
jd20 b3e90a3
Fix implicit function declaration warning
jd20 405d1a6
- Fix incorrect pixel width in WebP RGBX import call
jd20 acc4334
- Fix _webp reference when _webp is not available
jd20 c5e6211
Don't use unittest skip decorator, doesn't seem to work
jd20 e32fb4f
Move variable declaration to top of block
jd20 c9258d6
Move some more declarations to top of block
jd20 e75c386
Avoid 'Symbol not found: _sprintf_s' on 'from PIL import _webp'
hugovk 8e207d5
Merge pull request #1 from hugovk/monolithlabs-animated_webp-sprintf
jd20 28bec69
- flake8 formatting fixes
jd20 b3565d8
Merge branch 'animated_webp' of https://github.com/monolithlabs/Pillo…
jd20 cf31e70
Fixing a typo in comments
jd20 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we want this to run on the CI, which may be useful for debugging, call it test_ instead of check_. Could change the other two too.