파이썬의 Pillow 라이브러리를 이용하여 이미지 형식을 바꿔보자.
1. Pillow 라이브러리 설치
pip install Pillow
2. JPG to PNG
from PIL import Image
im = Image.open('hello.jpg').convert('RGB')
im.save('hello_png.png', 'png')
3. PNG to JPG
from PIL import Image
im = Image.open('hello.png').convert('RGB')
im.save('hello_jpg.jpg', 'jpeg')
4. 그 외의 형식들
- JPG to WEBP
from PIL import Image
im = Image.open('hello.jpg').convert('RGB')
im.save('hello_webp.webp', 'webp')
- PNG to WEBP
from PIL import Image
im = Image.open('hello.png').convert('RGB')
im.save('hello_webp.webp', 'webp')
Convert
'DL(Deep-Learning) > Python 기초' 카테고리의 다른 글
[Python] DataFrame 데이터 타입 변환하기 (0) | 2022.01.27 |
---|---|
Google Colab 런타임 연결 유지 & 출력 삭제 (0) | 2022.01.26 |
[Python] 파일 이름 변경하기 (0) | 2022.01.26 |
DataFrame 합치기2 (concat, merge, join) (0) | 2022.01.26 |
DataFrame 합치기1 (concat, merge, join) (0) | 2022.01.26 |