Latest Posts

Fresh thoughts and recent updates from the blog

tistory view

728x90
반응형

 

파이썬에서 이미지 사이즈 조절해서 띄우는 방법

!pip install pillow

from PIL import Image
image = Image.open("boxPlot.png")
# 최대 크기를 (500, 500)으로 제한 (비율 유지)
image.thumbnail((500, 500))
image

 

728x90
반응형
Comments