Python

Python animated gif 체크 방법

DevelopC 2019. 8. 13. 16:19
728x90

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)
728x90

'Python' 카테고리의 다른 글

Python json pretty print  (0) 2017.07.03
Python 네이버 블로그 글쓰기  (0) 2017.07.02
Python AES 암/복호화  (0) 2017.07.02