728x90
반응형
🗣️ WEBP란?
WEBP는 Google에서 개발한 이미지 파일 형식으로, 압축 효율이 높아 웹 페이지의 로딩 속도를 빠르게 해줍니다.
BUT.... 일부 프로그램은 WEBP를 지원하지 않으므로, 다른 형식으로 변환이 필요할 수 있습니다.
Python에서 이미지를 처리하기 위한 대표적인 라이브러리로는 Pillow와 OpenCV가 있습니다. 이 글에서는 설치와 사용이 간편한 Pillow를 활용한 변환 방법을 소개합니다.
1️⃣ Pillow 설치 및 설정 방법
Pillow는 다음과 같은 명령어로 설치할 수 있습니다.
pip install pillow
1️⃣.1️⃣ JPG로 변환하기
다음은 Python 코드로 WEBP 이미지를 JPG로 변환하는 방법입니다.
from PIL import Image
# WEBP 이미지를 불러와 JPG로 저장
input_image = "image.webp"
output_image = "image.jpg"
# 이미지 열기
with Image.open(input_image) as img:
img.convert("RGB").save(output_image, "JPEG")
1️⃣.2️⃣ PNG로 변환하는 방법
WEBP 이미지를 PNG 형식으로 저장하려면, JPEG 대신 PNG를 지정하면 됩니다.
output_image = "image.png"
with Image.open(input_image) as img:
img.save(output_image, "PNG")
1️⃣.3️⃣ 여러 파일을 일괄 변환하는 방법
import os
from PIL import Image
input_folder = "input_images"
output_folder = "output_images"
for filename in os.listdir(input_folder):
if filename.endswith(".webp"):
input_image = os.path.join(input_folder, filename)
output_image = os.path.join(output_folder, f"{os.path.splitext(filename)[0]}.jpg")
with Image.open(input_image) as img:
img.convert("RGB").save(output_image, "JPEG")
1️⃣.4️⃣ 해상도 및 품질 조정
save 함수에 quality 옵션을 통해 품질을 조절할 수 있으며, resize 함수로 해상도를 조절할 수 있습니다.
img_resized = img.resize((800, 600))
img_resized.save(output_image, "JPEG", quality=85)
728x90
반응형
'공부 > Programming' 카테고리의 다른 글
Python으로 APK 디코드하고 권한 추출하기 (1) | 2024.11.19 |
---|---|
Python gspread로 구글 시트(Google Sheet) 연동하기 (1) | 2024.11.15 |
C# Selenium 자동 업데이트 (0) | 2023.08.16 |
[C#] C# Selenium Crawling / C# 크롤링 (0) | 2021.02.17 |