トレーニング用の資料作るときに、僕だけがうれしい機能です。PowerPointのページ単位で画像ファイルに変換します。PowerPointを開いて、ファイル→エクスポート→ファイルの種類の変更を選ぶのと同じ事を、Pythonで自動化しました。
comを使ってPowerPointを操作し、ついでにファイル名がスライド1.PNGといろいろ嫌なので、slide1.pngに変換するようにしました。
読み込むPowerPointのファイル名と出力先をファイルの先頭で指定しています。当然、PowerPointがインストールされていないと動きません。試してみたければ、とりあえずtest.pptxのパワポファイルを用意すれば動くと思います。
PPT_NAME = 'test.pptx'
OUT_DIR = 'images'
全ソース
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, FilterName="png")
presentation.close()
application.quit()
def rename_img(odir):
file_list = glob.glob(os.path.join(odir, "*.PNG"))
for fname in file_list:
new_fname = fname.replace('スライド', 'slide').lower()
os.rename(fname, new_fname)
if __name__ == '__main__':
export_img(PPT_NAME, OUT_DIR)
rename_img(OUT_DIR)