-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Fix issues with GIF transparency #3434
Changes from all commits
e44f567
35c6ebd
68b844d
df10a72
b5806c7
87e54b4
2dcf6ca
4ff4770
644e7c0
60c068f
f96b405
be24990
8bfd763
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -262,16 +262,20 @@ def _seek(self, frame): | |||||||||||||||||||||||||||||||||||||
# do not dispose or none specified | ||||||||||||||||||||||||||||||||||||||
self.dispose = None | ||||||||||||||||||||||||||||||||||||||
elif self.disposal_method == 2: | ||||||||||||||||||||||||||||||||||||||
# replace with background colour | ||||||||||||||||||||||||||||||||||||||
# replace with transparency if there is one, otherwise | ||||||||||||||||||||||||||||||||||||||
# background colour | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
# only dispose the extent in this frame | ||||||||||||||||||||||||||||||||||||||
x0, y0, x1, y1 = self.dispose_extent | ||||||||||||||||||||||||||||||||||||||
dispose_size = (x1 - x0, y1 - y0) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
Image._decompression_bomb_check(dispose_size) | ||||||||||||||||||||||||||||||||||||||
self.dispose = Image.core.fill( | ||||||||||||||||||||||||||||||||||||||
"P", dispose_size, self.info.get("background", 0) | ||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
if frame_transparency is not None: | ||||||||||||||||||||||||||||||||||||||
bg = frame_transparency | ||||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||
bg = self.info.get("background", 0) | ||||||||||||||||||||||||||||||||||||||
self.dispose = Image.core.fill("P", dispose_size, bg) | ||||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||
# replace with previous contents | ||||||||||||||||||||||||||||||||||||||
if self.im: | ||||||||||||||||||||||||||||||||||||||
|
@@ -309,6 +313,17 @@ def _seek(self, frame): | |||||||||||||||||||||||||||||||||||||
if self.palette: | ||||||||||||||||||||||||||||||||||||||
self.mode = "P" | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
def load_prepare(self): | ||||||||||||||||||||||||||||||||||||||
super(GifImageFile, self).load_prepare() | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
if self.__frame == 0: | ||||||||||||||||||||||||||||||||||||||
# On the first frame, clear the buffer. Use the transparency index | ||||||||||||||||||||||||||||||||||||||
# if we have one, otherwise use the background index. | ||||||||||||||||||||||||||||||||||||||
default_color = self.info.get( | ||||||||||||||||||||||||||||||||||||||
"transparency", self.info.get("background", 0) | ||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||
self.im.paste(default_color, (0, 0, self.size[0], self.size[1])) | ||||||||||||||||||||||||||||||||||||||
Comment on lines
+317
to
+325
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This saves the parent There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've created #5557 with this functionality, minus the background color fallback. |
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
def tell(self): | ||||||||||||||||||||||||||||||||||||||
return self.__frame | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
|
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.
Why potentially use the transparency? I don't see this in the spec.
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.
I've found https://legacy.imagemagick.org/Usage/anim_basics/#dispose