About Pillow and PIL
PIL (Python Imaging Library) is a powerful and convenient image processing library for Python, and is relatively well known. However, it is only supported up to Python 2.7.
PIL official website: http://www.pythonware.com/products/pil/
Pillow is a derivative of PIL, but has evolved into a more dynamic image processing library than PIL itself. The latest version is currently 3.0.0.
Pillow's Github page: https://github.com/python-pillow/Pillow
Pillow's documentation (corresponding to v3.0.0): https://pillow.readthedocs.org/en/latest/handbook/index.html
Chinese translation of Pillow's documentation (for version v2.4.0):http://pillow-cn.readthedocs.org/en/latest/
Python 3.x Installing Pillow
Installing Pillow for Python is very simple, using pip or easy_install with just one line of code.
To install using PIP from the command line.
pip install Pillow
Or use easy_install on the command line to install.
easy_install Pillow
After installation, using from PIL import Image references the library. For example.
from PIL import Image
im = Image.open("bride.jpg")
im.rotate(45).show()
Read More:
- How to Install PSSH in Centos7
- How to Install Mongdb4.X in Windows
- How to Use pychar to run tensorflow and virtualenv (How to install tensorflow)
- How to Install FFmpeg on Linux
- How To Install Java with Apt-Get on Ubuntu 16.04
- How to Solve Cython-bbox pip install Error
- How to Solve program install error 0x80070660
- How To Install WordPress with LAMP on Ubuntu 16.04
- Macos: How to Solve cocoapods Install Error
- How to Install MongoDB Community Edition Manually on mac and linux
- Debian: How to install MariaDB
- How to Sole cmd Install typeScript Error
- Mac: How to Install homebrew, nginx, PHP and MySQL
- Docker: How to Install Nacos
- How to Solve Oracle 11g Install Stuck 86% error on Linux
- How to solve the error of “failed to create the Java virtual machine” in installing eclipse 2020-03 in MAC environment
- How to set font color in Latex (3 ways)
- [Solved] Acrobat DC 2022 Install Error: Cannot Install Acrobat Update Service
- [Solved] faiss Failed to install Error: No version of faiss found that meets the requirements
- FreeSWITCH installation error “You must install libyuv-dev to build mod_fsv” solution