Python如何将bmp格式的图片批量转成jpg

 更新时间:2023年03月25日 09:49:59   作者:雪地(>^ω^<)  
这篇文章主要介绍了Python如何将bmp格式的图片批量转成jpg问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

将bmp格式的图片批量转成jpg

# *_* coding : UTF-8 *_*
# 开发人员: csu·pan-_-||
# 开发时间: 2020/11/21 12:40
# 文件名称: bmp_to_jpg.py
# 开发工具: PyCharm
# 功能描述: 将bmp格式的图片批量转成jpg

import os
import cv2

# 图片的路径
bmp_dir = r'E:\Projects\bmp'
jpg_dir = r'E:\Projects\jpg'

filelists = os.listdir(bmp_dir)

for i,file in enumerate(filelists):
    # 读图,-1为不改变图片格式,0为灰度图  
    img = cv2.imread(os.path.join(bmp_dir,file),-1)
    newName = file.replace('.bmp','.jpg')
    cv2.imwrite(os.path.join(jpg_dir,newName),img)
    print('第%d张图:%s'%(i+1,newName))

python图像格式转换(bmp、jpg、png)

bmp转png

import os
from PIL import Image
json_dir = r"D:\BMP2PNG"
label_names = os.listdir(json_dir)
label_dir = []
for filename in label_names:
    label_dir.append(os.path.join(json_dir,filename))

for i,filename in enumerate(label_dir):

    im = Image.open(filename)  # open ppm file

    newname = label_names[i].split('.')[0] + '.png'  # new name for png file
    im.save(os.path.join(json_dir,newname))

bmp转jpg

import os
from PIL import Image
json_dir = r"D:\BMP2JPG"
label_names = os.listdir(json_dir)
label_dir = []
for filename in label_names:
    label_dir.append(os.path.join(json_dir,filename))

for i,filename in enumerate(label_dir):

    im = Image.open(filename)  # open ppm file

    newname = label_names[i].split('.')[0] + '.jpg'  # new name for png file
    im.save(os.path.join(json_dir,newname))

遍历文件夹下包含子文件夹中的所有bmp转png

import os
from PIL import Image
import tqdm

def bmp2png(file_dir):
    for root, dirs, files in os.walk(file_dir):  # 获取所有文件
        # for file in files:  # 遍历所有文件名
        for idx,file in enumerate(tqdm.tqdm(files)):
            if os.path.splitext(file)[1] == '.bmp':   # 指定尾缀  ***重要***
                im = Image.open(os.path.join(root, file))  # open img file
                newname = file.split('.')[0] + '.png'  # new name for png file
                im.save(os.path.join(root, newname))  # 转为png

bmp2png(r"D:\数据集\20221105-18")

遍历文件夹下包含子文件夹中的所有bmp重命名为png

import os
from PIL import Image
import tqdm

def bmp2png(file_dir):
    for root, dirs, files in os.walk(file_dir):  # 获取所有文件
        # for file in files:  # 遍历所有文件名
        for idx,file in enumerate(tqdm.tqdm(files)):
            if os.path.splitext(file)[1] == '.bmp':   # 指定尾缀  ***重要***
                newname = file.split('.')[0] + '.png'  # new name for png file
                if(os.path.exists(os.path.join(root, newname))):
                    os.remove(os.path.join(root, newname))
                os.rename(os.path.join(root, file),os.path.join(root, newname))
                print(os.path.join(root, file))

bmp2png(r"D:\PUCP数据集\20221105-18")

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

相关文章

  • Sanic框架流式传输操作示例

    Sanic框架流式传输操作示例

    这篇文章主要介绍了Sanic框架流式传输操作,结合实例形式分析了Sanic通过流请求与响应传输操作相关实现技巧与注意事项,需要的朋友可以参考下
    2018-07-07
  • pytorch中unsqueeze用法小结

    pytorch中unsqueeze用法小结

    unsqueeze()的作用是用来增加给定tensor的维度的,本文主要介绍了pytorch中unsqueeze用法小结,具有一定的参考价值,感兴趣的可以了解一下
    2024-04-04
  • Python单元和文档测试实例详解

    Python单元和文档测试实例详解

    这篇文章主要介绍了Python单元和文档测试,结合实例形式分析了Python单元测试模块unittest及文档测试模块doctest相关使用技巧,需要的朋友可以参考下
    2019-04-04
  • Python远程开发环境部署与调试过程图解

    Python远程开发环境部署与调试过程图解

    这篇文章主要介绍了Python远程开发环境部署与调试过程图解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2019-12-12
  • python暴力解压rar加密文件过程详解

    python暴力解压rar加密文件过程详解

    这篇文章主要介绍了python解压rar加密文件过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2019-07-07
  • Python六大开源框架对比

    Python六大开源框架对比

    在这篇文章里,我们将为Python Web开发者回顾基于Python的6大Web应用框架。无论你是出于爱好还是需求,这六大框架都可能会成为你工作上不错的得力助手。
    2015-10-10
  • OpenCV实现图像滤波之双边滤波

    OpenCV实现图像滤波之双边滤波

    这篇文章主要为大家详细介绍了OpenCV实现图像滤波之双边滤波,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-10-10
  • 在DOS界面如何运行python的py文件

    在DOS界面如何运行python的py文件

    这篇文章主要介绍了在DOS界面如何运行python的py文件,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2022-11-11
  • 浅谈python中的数字类型与处理工具

    浅谈python中的数字类型与处理工具

    下面小编就为大家带来一篇浅谈python中的数字类型与处理工具。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-08-08
  • Python数据分析应用之Matplotlib数据可视化详情

    Python数据分析应用之Matplotlib数据可视化详情

    这篇文章主要介绍了Python数据分析应用之Matplotlib数据可视化详情,文章围绕主题展开详细的内容介绍,具有一定的参考价值,感兴趣的小伙伴可以参考一下
    2022-06-06

最新评论