Python animated gif 체크 방법 Python animated gif 체크 방법 먼저 pip를 사용하여 pillow 패키지를 설치합니다. $ pip install pillow from PIL import Image gif = Image.open('path/to/animated.gif') try: gif.seek(1) except EOFError: is_animated = False else: is_animated = True print(is_animated) Python 2019.08.13