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