C# PowerPointをHTMLに変換
今日は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”というようになります。)
元のファイル
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);
}
}
}
実行結果
Author And Source
この問題について(C# PowerPointをHTMLに変換), 我々は、より多くの情報をここで見つけました https://qiita.com/iceblue/items/68d6335975f0c6087d8f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .