■ WebPImageFile 클래스의 save 메소드를 사용해 .WEBP 파일을 .GIF 파일로 저장하는 방법을 보여준다.
▶ main.py
1 2 3 4 5 6 7 |
from PIL import Image webPImageFile = Image.open("./sample.webp") webPImageFile.save("./sample.gif", "gif", save_all = True) |
▶ requirements.txt
1 2 3 |
pillow==10.4.0 |
※ pip install pillow 명령을 실행했다.