python批量将图片切割成四份
时间: 2023-10-07 11:14:27 浏览: 272
以下是一个简单的Python脚本,可以将一张图片切成四份,并保存为四张新图片:
```python
from PIL import Image
# 打开原始图片并获取宽高
img = Image.open("original_image.png")
width, height = img.size
# 计算每个切割后图片的宽高
new_width = int(width / 2)
new_height = int(height / 2)
# 切割并保存每个图片
top_left = img.crop((0, 0, new_width, new_height))
top_left.save("top_left.png")
top_right = img.crop((new_width, 0, width, new_height))
top_right.save("top_right.png")
bottom_left = img.crop((0, new_height, new_width, height))
bottom_left.save("bottom_left.png")
bottom_right = img.crop((new_width, new_height, width, height))
bottom_right.save("bottom_right.png")
```
在运行脚本之前,需要先安装Pillow库,可以使用以下命令进行安装:
```
pip install Pillow
```
将原始图片放在脚本所在目录下,然后运行脚本就可以得到四张新图片。
阅读全文