python绘制一个实心图片
时间: 2024-05-12 22:16:46 浏览: 103
用python画心
可以使用Python的Pillow库来创建和处理图像。以下是绘制一个红色圆形的示例代码:
```python
from PIL import Image, ImageDraw
width, height = 200, 200
image = Image.new('RGB', (width, height), color='white')
draw = ImageDraw.Draw(image)
# 绘制圆形
center_x, center_y = width//2, height//2
radius = 50
draw.ellipse((center_x-radius, center_y-radius, center_x+radius, center_y+radius), fill='red')
# 显示图像
image.show()
```
你可以根据需要自定义图像的大小、形状,修改颜色和填充方式。记得在代码中引入Pillow库,可以使用`pip install pillow`来安装。
阅读全文