Windows 環境の PHP で COM を使えば、Word, Excel, PowerPoint なんかを操作できることができる。試しに PowerPoint の各スライドに文字列を挿入するコードを書いてみた。
https://gist.github.com/mgng/75ee5753d6c5b38adcc585f6ed7c1d60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// 参考 : https://msdn.microsoft.com/ja-jp/vba/powerpoint-vba/articles/slide-object-powerpoint | |
// パワーポイントファイル名 | |
$filename = __DIR__ . "/data/test.pptx"; | |
// COM インスタンス生成 | |
$ppt_app = new \COM("PowerPoint.Application"); | |
// ファイル読み込み | |
$presentation = $ppt_app->Presentations->Open($filename); | |
// スライドを1枚ずつ処理。Indexが 1スタートなので注意 | |
for($idx=1, $count=$presentation->Slides->Count; $idx <= $count; $idx++){ | |
// スライドオブジェクト | |
$Slide = $presentation->Slides[$idx]; | |
// テキストボックスを追加 | |
// 第一引数については以下にヒントあり | |
// https://stackoverflow.com/questions/12231435/what-is-constant-value-of-msotextorientationhorizontal-in-vba/12237734 | |
// msoTextOrientationMixed = 0xfffffffe (-2) | |
// msoTextOrientationHorizontal = 1 | |
// msoTextOrientationUpward = 2 | |
// msoTextOrientationDownward = 3 | |
// msoTextOrientationVerticalFarEast = 4 | |
// msoTextOrientationVertical = 5 | |
// msoTextOrientationHorizontalRotatedFarEast = 6 | |
$textShape = $Slide->Shapes->AddTextbox(1, 10,10, 200,20); | |
// フォントサイズ | |
$textShape->TextEffect->FontSize = 15; | |
// 文字の太さ | |
$textShape->TextEffect->FontBold = true; | |
// 文字色を赤に設定。順番が RGB ではなく GBR になっているぽい? | |
$textShape->TextFrame->TextRange->Font->Color->RGB = 0x0000FF; | |
// テキスト追加。SJISにしないと埋め込めない。 | |
$textShape->TextFrame->TextRange->Text = mb_convert_encoding("追加テキスト:{$idx}", "SJIS-win", "UTF-8"); | |
} | |
// 保存 | |
$presentation->Save(); | |
// 終了 | |
$presentation->Close(); | |
$ppt_app->Quit(); |
もとのファイルが これ、プログラム実行後のファイルが これ。どちらもPDFにしてある。
基本的には MSDN からメソッドやプロパティを探して PHP のコードに置き換えていけば動く。ただし定数はPHP側では未定義なので、直接数値指定するしかない(msoTextOrientationHorizontal → 1 とか)。
≪ 2018-04-11
gracenote API に繋がらなくなったときに行う手段
2018-04-09 ≫
週末の日記(スタジオとリメンバーミー)