--
問:python 如何將 word 檔案另存為 HTML 檔案
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import sys import os import comtypes.client # 設置路徑 input_file_path = sys.argv[1] output_file_path = sys.argv[2] input_file_path = os.path.abspath(input_file_path) output_file_path = os.path.abspath(output_file_path) # 創建 html word = comtypes.client.CreateObject("Word.Application") word.Visible = 0 doc = word.Documents.Open(input_file_path) doc.SaveAs(output_file_path, FileFormat=8) # 8 表示 html 格式 doc.Close() word.Quit() |
--
番外
想要將 Word 另存成圖檔,所以也問了一下 AI,AI 只會調整 FileFormat 參數,可是從官方文件可以得知,Word 根本無法使用另存的方式存成圖檔,鬼打牆很久之後直接放棄
--
513 total views, 1 views today