convert

    [Python] Convert JPG to PNG (feat. PIL)

    파이썬의 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.sa..