使用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