
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント8件
- 注目コメント
- 新着コメント

注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
PythonでPowerPointの各ページを画像ファイルにする - Qiita
import os import glob from comtypes import client PPT_NAME = 'test.pptx' OUT_DIR = 'images' def e... import os import glob from comtypes import client PPT_NAME = 'test.pptx' OUT_DIR = 'images' def export_img(fname, odir): application = client.CreateObject("Powerpoint.Application") application.Visible = True current_folder = os.getcwd() presentation = application.Presentations.open(os.path.join(current_folder, fname)) export_path = os.path.join(current_folder, odir) presentation.Export(export_path
2020/03/17 リンク