Use disposal settings from previous frame in APNG #5126
Merged
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_op
andself.dispose_extent
are set in_seek
,Pillow/src/PIL/PngImagePlugin.py
Lines 854 to 856 in ce3d80e
and then used in
_load_end
Pillow/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.