Python docx2pdf – 在本文中,透過docx2pdf資料庫, 我將向你展示在Python程式上把word檔案輸出至PDF檔案的方法.
資料庫 (Library) |
安裝資料庫 | pip install docx2pdf |
程式碼 (Code) |
導入資料庫 把docx檔案輸出成PDF 把docx檔案輸出成指定名稱的PDF 把資料檔下的docx檔案輸出成心PDF | from docx2pdf import convert convert(“原資料檔案.docx”) convert(“原資料檔案.docx”, “輸出檔案.pdf”) convert(“原資料檔案/”) |
| |
Options: CMD | |
Command: | docx2pdf input.docx output.pdf |
|
| |