使用 python3 -pillow module build a image converter
網路上找的3D model texture大多為.PNG 為了讓程式方便載入(懶得改寫 mtl loader😅),目前可以讀入的為 .PPM 使用python的pillow模組與image套件,讀入.PNG,再以.PPM儲存到資料夾中 已安裝: python (目前版本為3.7) 使用cmd就可以達成 1.系統管理員開啟cmd,安裝 pillow module 輸入: pip install pillow 2.以cmd 開啟python 輸入: python 3.import 需要使用的工具,在python中 輸入: from os import listdir from os.path import isfile,isdir,join from glob import glob from os.path import splitext from PIL import Image 4. 根據路徑位置讀取所有的png檔案名稱,再用字串切掉副檔名並加上".ppm" 輸入: pnglist = glob("filepath/*.[pP][nN][gG]") for png in pnglist: im = Image.open(png) ppm = splitext(png)[0]+".ppm" im.save(ppm) DONE! fully suppoerted format: JPG、PNG、PPM、TIFF..... 關於PIL的詳細支援格式 here