.NET用ODPファイルビューア
MicrosoftPowerPointやOfficeAutomationを使用せずにODPなどのプレゼンテーションファイルを表示する
C#を使用してODPファイルを表示する方法
ODPファイルを表示するには、 [Aspose.Slides for .NET](https://products.aspose.com/slides/ja/net) APIは、機能が豊富で強力で使いやすいC#プラットフォーム用のAPIであり、任意のビューアで使用できます。開ける [NuGet](https://www.nuget.org/packages/aspose.slides.net) パッケージマネージャー、検索 ** Aspose.Slides ** とインストールします。パッケージマネージャーコンソールから次のコマンドを使用することもできます。
パッケージマネージャーコンソールコマンド
PM> Install-Package Aspose.Slides.NET
C#経由でODPを表示する手順
Aspose.Slidesを使用すると、開発者は数行のコードでODPファイルを簡単に表示できます。
プレゼンテーションオブジェクトをインスタンス化し、ODPファイルをロードします
フォーマット用のResponsiveHtmlControllerのインスタンスを作成します
HtmlOptionsのインスタンスを作成し、HtmlFormatterプロパティを設定します
ODPプレゼンテーションをHTML形式で保存します
Processを呼び出します。結果のHTMLへのパスから開始して、デフォルトのブラウザにODPコンテンツをロードします。
システム要求
Aspose.Slides for .NETは、すべての主要なオペレーティングシステムでサポートされています。次の前提条件があることを確認してください。
-Microsoft Windows、または.NET Framework、.NET Core、Windows Azure、Mono、またはXamarinプラットフォームと互換性のあるOS -MicrosoftVisualStudioのような開発環境 -プロジェクトで参照されているAspose.Slidesfor.NET
ODPファイルを表示するためのC#サンプルコード
string output = System.IO.Path.GetTempPath() + Guid.NewGuid().ToString() + ".html";
// instantiate a Presentation object & load the ODP file
using (var presentation = new Aspose.Slides.Presentation("templateodp"))
{
// create HTML export controller
var controller = new Aspose.Slides.Export.ResponsiveHtmlController();
// create an instance of HtmlOptions and set HtmlFormatter property
var htmlOptions = new Aspose.Slides.Export.HtmlOptions
{
HtmlFormatter = Aspose.Slides.Export.HtmlFormatter.CreateCustomFormatter(controller)
};
// save the presentation in HTML
presentation.Save(output, Aspose.Slides.Export.SaveFormat.Html, htmlOptions);
}
// load HTML to view the presentation content
System.Diagnostics.Process.Start(output);
Aspose.Slides for.NETAPIについて
Aspose.Slides APIを使用して、Microsoft PowerPointドキュメントの読み取り、書き込み、操作、およびPDF、XPS、HTML、TIFF、ODP、その他のさまざまな形式への変換を行うことができます。新しいファイルを最初から作成し、サポートされている関連する形式で保存できます。 Aspose.Slidesは、プレゼンテーション、スライド、要素を作成、解析、または操作するためのスタンドアロンAPIであり、MicrosoftやOpenOfficeなどのソフトウェアに依存しません。Free App to View ODP
Check our live demos to View ODP with following benefits.
ODP ODP ファイル形式とは
Files with ODP extension represent presentation file format used by OpenOffice.org in the OASISOpen standard. A presentation file is a collection of slides where each slide can comprise of text, images, formatting, animations, and other media. These slides are presented to audience in the form of slideshows with custom presentation settings. ODP files can be opened by applications that conform to the OpenDocument format (such as OpenOffice or StarOffice).
続きを読むその他のサポートされているビューア形式
C#を使用すると、を含む他の多くのファイル形式を表示することもできます。