用Python安装pil库的代码
时间: 2024-03-26 22:38:16 浏览: 65
python安装pil库方法及代码
您可以使用以下命令使用pip在Python中安装Pillow库:
```
pip install Pillow
```
Pillow库是Python Imaging Library(PIL)的一个分支,它提供了许多有用的图像处理功能。安装Pillow库之后,您可以使用以下代码导入并使用它:
```python
from PIL import Image
# Open an image file
img = Image.open('example.jpg')
# Show the image
img.show()
# Resize the image
img = img.resize((800, 600))
# Save the image
img.save('example_resized.jpg')
```
阅读全文