Use disposal settings from previous frame in APNG#5126
Merged
hugovk merged 1 commit intopython-pillow:masterfrom Dec 31, 2020
Merged
Use disposal settings from previous frame in APNG#5126hugovk merged 1 commit intopython-pillow:masterfrom
hugovk merged 1 commit intopython-pillow:masterfrom
Conversation
This was referenced Dec 23, 2020
Closed
This was referenced Mar 8, 2021
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Helps the APNG part of #5032. Alternative to #5071
Resolves #4657
At the moment,
self.dispose_opandself.dispose_extentare set in_seek,Pillow/src/PIL/PngImagePlugin.py
Lines 854 to 856 in ce3d80e
and then used in
_load_endPillow/src/PIL/PngImagePlugin.py
Lines 946 to 953 in ce3d80e
This should not be the case, as the specification states that
It controls how the contents of the current frame should be disposed when moving on to the next frame. It is not something to be immediately applied.
This PR corrects that.