my opinion is my own

パワーポイント(pptx)ファイルをPythonでPDF化

手順

Windowsで実施。

  1. 必要なライブラリをインストール

    pip install comtypes
    
  2. git clone

    git clone https://github.com/matthewrenze/powerpoint-to-pdf.git
    
  3. pdf化したいpptxファイルをpowerpoint-to-pdfフォルダ配下に配置する

  4. python 実行

    python ConvertHere.py
    

補足

参考

from https://github.com/matthewrenze/powerpoint-to-pdf

---

関連しているかもしれない記事


#Python #その他