您好,登錄后才能下訂單哦!
這篇文章主要介紹“Python怎么將bmp格式的圖片批量轉成jpg”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Python怎么將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))
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))
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))
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")
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”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。