If GIF has already seeked past first frame, it is animated

This commit is contained in:
Andrew Murray 2022-02-21 15:57:13 +11:00
parent 54be93c8b0
commit 73cf28cc94

View File

@ -110,7 +110,9 @@ class GifImageFile(ImageFile.ImageFile):
self._is_animated = self._n_frames != 1
else:
current = self.tell()
if current:
self._is_animated = True
else:
try:
self.seek(1)
self._is_animated = True