亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么將bmp格式的圖片批量轉成jpg

發布時間:2023-03-25 10:24:19 來源:億速云 閱讀:85 作者:iii 欄目:開發技術

這篇文章主要介紹“Python怎么將bmp格式的圖片批量轉成jpg”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“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")

關于“Python怎么將bmp格式的圖片批量轉成jpg”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

河西区| 台江县| 龙川县| 闽清县| 南郑县| 玛多县| 客服| 军事| 清苑县| 永靖县| 福泉市| 肥城市| 同江市| 台北市| 喀喇沁旗| 都兰县| 团风县| 兴化市| 河西区| 诏安县| 华坪县| 通辽市| 洪雅县| 巨鹿县| 兴城市| 蕉岭县| 高台县| 临江市| 敖汉旗| 闽清县| 天长市| 德州市| 招远市| 闸北区| 柳河县| 张家口市| 灯塔市| 苏尼特左旗| 七台河市| 定边县| 淅川县|