bat脚本批量旋转文件夹下图片90度
时间: 2023-10-10 18:06:06 浏览: 254
批量图片旋转
5星 · 资源好评率100%
,应该怎么做?
您可以使用Pillow库中的Image模块,使用Python脚本来实现图片旋转。以下是一个示例代码:
```python
from PIL import Image
import os
# 待旋转图片所在文件夹路径
dir_path = "path/to/directory"
# 遍历文件夹下所有图片文件
for file_name in os.listdir(dir_path):
if file_name.endswith(".jpg") or file_name.endswith(".png"):
file_path = os.path.join(dir_path, file_name)
# 打开图片
img = Image.open(file_path)
# 旋转90度
img = img.rotate(90, expand=True)
# 保存图片,覆盖原图片
img.save(file_path)
```
通过此代码,您可以批量旋转文件夹下的所有图片文件90度。
阅读全文