반응형
pillow crop, PIL 이미지 자르기, pillow 그림 자르기 파이썬 PIL¶
In [2]:
from PIL import Image
이미지 열기¶
In [3]:
img = Image.open("test_image.jpeg")
In [4]:
w, h = img.size
print("width(가로) : ", w)
print("height(세로) : ", h)
width(가로) : 1440 height(세로) : 1080
In [5]:
img
Out[5]:
crop(가로 시작점, 세로시작점, 가로 끝점, 세로 끈점)¶
In [6]:
img.crop((0,0,500,300))
Out[6]:
In [7]:
img.crop((500,300,700,600))
Out[7]:
반응형
'python' 카테고리의 다른 글
넘파이 어레이 차원 합치기 numpy append (0) | 2023.02.26 |
---|---|
넘파이 제곱근 Square Root, 제곱값 square, np.sqrt(), np.square() (0) | 2023.02.25 |
pandas 요약 describe 정보 info 컬럼보기 columns 타입보기 (0) | 2023.02.25 |
판다스 이전 값 활용, 값 하나씩 올리기, dataframe.shift pandas (0) | 2023.02.24 |
파이썬 sklearn 유방암 데이터 (load_breast_cancer), 머신러닝, 딥러닝 (0) | 2023.02.24 |
댓글