今日はC#についての話です。そして、Spire.Presentationという無料のライブラリを使って、PowerPointをHTMLに変換する方法を紹介します。
下準備
1.E-iceblueの公式サイトからFree Spire. Presentation無料版をダウンロードしてください。
2.Visual Studioを起動して新規プロジェクトを作成してから、インストールされたファイルにあった相応しいSpire. Presentation.dllを参照に追加してください。
(Net 4.0を例としたら、デフォルトパスは“Bin→NET4.0→Presentation.dll”というようになります。)
元のファイル
```C# using Spire.Presentation; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { //PowePoint Objectを作成します。 Presentation ppt = new Presentation(); //ファイルをロードします。 ppt.LoadFromFile(@"Sample.pptx"); //HTMLで保存します。 ppt.SaveToFile("ConvertPPTtoHtml.html", FileFormat.Html); }
}
}
<h4><strong>実行結果</strong></h4>
<p><img src="https://cdn-ak.f.st-hatena.com/images/fotolife/l/lendoris/20210507/20210507154027.png" alt="f:id:lendoris:20210507154027p:plain" title="" class="hatena-fotolife" itemprop="image" /></p>
<p> </p>