C#でOTP形式をマージする
MicrosoftやOpenOffice、Adobe PDFなどのソフトウェアを使用せずに、サーバー側のAspose.Slides for.NETAPIを使用したネイティブで高性能なOTPドキュメントのマージ。
C#を使用してOTPファイルをマージする方法
OTPファイルをマージするために、 [Aspose.Slides for .NET](https://products.aspose.com/slides/ja/net) 機能が豊富で強力で使いやすいドキュメント操作およびC#プラットフォーム用のAPIのマージであるAPI。開ける [NuGet](https://www.nuget.org/packages/aspose.slides.net) パッケージマネージャー、検索 ** Aspose.Slides ** とインストールします。パッケージマネージャーコンソールから次のコマンドを使用することもできます。
指示
PM> Install-Package Aspose.Slides.NET
C#でOTPファイルをマージする手順
[Aspose.Slides for .NET](https://products.aspose.com/slides/ja/net)APIとマージおよび連結する基本的なドキュメントは、わずか数行のコードで実行できます。
フルパスですべてのOTPファイルをロードします。
1つのドキュメントをベースファイルとして作成します
ファイルを1つずつ連結およびマージするための関連するメソッドを呼び出します。
Save()メソッドを呼び出し、ファイル名(フルパス)とフォーマット(OTP)をパラメーターとして渡します。
これで、Microsoft Office、Adobe PDF、またはその他の互換性のあるプログラムでOTPファイルを開いて使用できます。
システム要求
当社のAPIは、すべての主要なプラットフォームとオペレーティングシステムでサポートされています。以下のコードを実行する前に、システムに次の前提条件があることを確認してください。
-Microsoft Windows、または.NET Framework、.NET Core、Windows Azure、Mono、またはXamarinプラットフォームと互換性のあるOS -MicrosoftVisualStudioのような開発環境 -プロジェクトで参照されているAspose.Slidesfor.NETDLL-上の[ダウンロード]ボタンを使用してNuGetからインストールします
OTPファイルのマージ-C#
var ps1 = new Presentation("presen1.otp");
var ps2 = new Presentation("presen2.pptx");
//merged Presentation
var mp = new Presentation("template.pptx");
while (mp.Slides.Count > 0){
mp.Slides.RemoveAt(0);
}
// master slide
var ms = mp.Masters[0];
// The first OTP presentation is added with its own styles.
foreach (var slide in ps1.Slides){
mp.Slides.AddClone(slide);
}
// The second PPTX presentation is added with template presentation styles using.
foreach (var slide in ps2.Slides){
mp.Slides.AddClone(slide, ms, true);
}
// It is possible to save the merged presentation to any supported format.
mp.Save("mp.pptx", SaveFormat.Pptx);
mp.Save("mp.pptx", SaveFormat.Pdf);
PDFファイルをオンラインで結合
Aspose.Slides for.NETAPIについて
Aspose.Slides APIを使用して、Microsoft PowerPointドキュメントの読み取り、書き込み、操作、およびPDF、XPS、HTML、TIFF、ODP、その他のさまざまな形式への変換を行うことができます。新しいファイルを最初から作成し、サポートされている関連する形式で保存できます。 Aspose.Slidesは、プレゼンテーション、スライド、要素を作成、解析、または操作するためのスタンドアロンAPIであり、MicrosoftやOpenOfficeなどのソフトウェアに依存しません。Online OTP Merger Live Demos
Merge OTP documents right now by visiting our Live Demos website . The live demo has the following benefits
OTP OTP ファイル形式とは
Files with .OTP extension represent presentation template files created by applications in OASIS OpenDocument standard format. The contents of such a file include presentation information in the form of slides with text, images, shapes, multimedia content, transition effects and other slide elements. These template files are used for creating new presentations quickly based on the styling information stored in the template itself. OTP files can be created and saved with several different applications such as Impress that comes with OpenOffice suite and Microsoft PowerPoint. The OTP file format is similar to Microsoft PowerPoint template files .POT and .POTX.
続きを読むその他のサポートされているマージ形式
C#を使用すると、を含む他の多くのファイル形式をマージすることもできます。