python生成图片
时间: 2023-07-04 22:13:11 浏览: 74
要在 Python 中生成图片,可以使用 PIL(Python Imaging Library)或者 Pillow 库。
以下是一个简单的例子,可以使用 Pillow 库生成一个红色的 100x100 像素的图像,并将其保存为 PNG 格式:
```python
from PIL import Image
# 创建一个红色的 100x100 像素图像
image = Image.new('RGB', (100, 100), color='red')
# 保存图像为 PNG 格式
image.save('red_square.png')
```
你可以按照自己的需求修改图像的尺寸、颜色等参数。同时,Pillow 还提供了很多其他功能,比如图像剪切、旋转、缩放等等。
阅读全文