Pillow는 PIL의 포크이지만 이제 PIL 자체보다 더 역동적인 이미지 처리 라이브러리로 발전했습니다. 현재 최신 버전은 3.0.0입니다.
Pillow Github 홈페이지: https://github.com/python-pillow/Pillow
Pillow 설명서(버전 v3.0.0에 해당): https://pillow . readthedocs.org/en/latest/handbook/index.html
Pillow 문서 중국어 번역(v2.4.0 버전에 해당): http://pillow-cn.readthedocs.org/en/latest /
Python 3.x Pillow 설치
Python용 Pillow 설치는 매우 간단합니다. pip 또는 easy_install을 사용하려면 코드 한 줄만 있으면 됩니다.
PIP를 사용하여 명령줄에 설치:
pip install Pillow
또는 easy_install을 사용하여 명령줄에 설치:
easy_install Pillow
설치가 완료된 후 , PIL 가져오기 이미지에서 사용 라이브러리를 참조하기만 하면 됩니다. 예:
from PIL import Image im = Image.open("bride.jpg") im.rotate(45).show()
위 내용은 Python3에 베개 모듈을 설치하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!