要批量轉換圖像格式,可以使用Pillow庫和Python編程來實現。下面是一個簡單的示例代碼,演示如何批量將文件夾中的所有圖像文件轉換為指定格式:
from PIL import Image
import os
# 指定輸入文件夾和輸出文件夾
input_folder = 'input_folder'
output_folder = 'output_folder'
# 創建輸出文件夾
if not os.path.exists(output_folder):
os.makedirs(output_folder)
# 遍歷輸入文件夾中的所有文件
for filename in os.listdir(input_folder):
if filename.endswith('.jpg') or filename.endswith('.png'):
# 打開圖像文件
img = Image.open(os.path.join(input_folder, filename))
# 將圖像轉換為指定格式
new_filename = os.path.splitext(filename)[0] + '.jpeg'
img.save(os.path.join(output_folder, new_filename), 'JPEG')
在上面的代碼中,首先指定輸入文件夾和輸出文件夾的路徑,然后遍歷輸入文件夾中的所有文件。對于以’.jpg’或’.png’結尾的文件,使用Pillow庫打開圖像文件,然后將圖像轉換為.jpeg格式,最后保存到輸出文件夾中。您可以根據需要修改文件格式和輸出路徑。