使用Python的Pillow库可以批量修改图片大小。具体步骤如下:
pip install Pillow
from PIL import Image
import os
# 指定文件夹路径
folder_path = 'path/to/folder'
# 遍历文件夹中的所有文件
for file_name in os.listdir(folder_path):
# 判断是否为图片文件
if file_name.endswith('.jpg') or file_name.endswith('.png'):
# 打开图片文件
image = Image.open(os.path.join(folder_path, file_name))
# 修改图片大小
new_image = image.resize((new_width, new_height))
# 保存修改后的图片
new_image.save(os.path.join(folder_path, 'new_' + file_name))
其中,new_width
和new_height
为新的图片宽度和高度。new_image.save()
中的new_
前缀是为了避免覆盖原始图片文件。
python resize_images.py
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: ps印章工具用不了怎么解决