python 批量图像格式转换

python 批量图像格式转换

程序功能

不改变原图像命名,只修改文件格式,应用于文件夹内单张(手动也很香,狗头)或者批量图像格式修改。

功能展示

转换前:
python 批量图像格式转换_第1张图片
转换后:
python 批量图像格式转换_第2张图片

程序代码

import os
path = r'C:\Users\Desktop\keji_png'  # 原图路径
save_path = r'C:\Users\Desktop\keji_jpg'  # 保存路径
filelist = os.listdir(path) 

for file in filelist: 
    orgin_dir = os.path.join(path,file) 
    if os.path.isdir(orgin_dir): 
        continue
        pass
    filename=os.path.splitext(file)[0] 
    fileindex = filename[:]
    filetype=os.path.splitext(file)[1] 
    new_dir=os.path.join(save_path,str(fileindex)+str('.jpg')) 
    os.rename(orgin_dir,new_dir)

版本信息

python 3.9.1
Windos11

写在最后

希望大家多多支持我!

你可能感兴趣的:(图像预处理,python)