使用 C++ 合併 PPSX 文件
使用服務器端 C++ API 的 PPSX 文檔合併。
如何使用 C++ 合併 PPSX 文件
為了合併 PPSX 文件,我們將使用
API 是一個功能豐富、功能強大且易於使用的 C++ 平台文檔合併 API。可以直接下載最新版本,直接打開
包管理器,搜索 Aspose.Slides.Cpp 並安裝。您還可以從包管理器控制台使用以下命令。
命令
PM> Install-Package Aspose.Slides.Cpp
在 C++ 中合併 PPSX 文件的步驟
只需幾行代碼即可完成與 Aspose.Slides for C++ API 合併和連接的基本文檔。
加載兩個 PPSX 文件。
使用 get_Slides() 方法遍歷每張幻燈片。
使用 AddClone 功能與所需文件合併。
使用 Save() 方法保存在指定路徑
系統要求
Aspose.Slides for C++ 支持所有主要平台和操作系統。請確保您具有以下先決條件。
- Microsoft Windows 或具有適用於 Windows 32 位、Windows 64 位和 Linux 64 位的 C++ 運行時環境的兼容操作系統。
- 項目中引用的 C++ DLL 的 Aspose.Slides。
合併 PPSX 文件 - C++
// The path to the documents directory.
const String sourceFilePath1 = u"SourceFile2.ppsx";
const String sourceFilePath2 = u"SourceFile3.ppsx";
const String outputFilePath = u"mergedOutput.ppsx";
// Instantiate Presentation class
SharedPtr<Presentation> presentation1 = MakeObject<Presentation>(sourceFilePath1);
SharedPtr<Presentation> presentation2 = MakeObject<Presentation>(sourceFilePath2);
for (SharedPtr<ISlide> slide : presentation2->get_Slides()){
// Merge from source to destination
presentation1->get_Slides()->AddClone(slide);
}
// Save the presentation
presentation1->Save(outputFilePath, SaveFormat::Ppsx);
在線合併 PDF 文件
關於 Aspose.Slides for C++ API
Aspose.Slides API 可用於讀取、寫入、操作 Microsoft PowerPoint 文檔並將其轉換為 PDF、XPS、HTML、TIFF、ODP 和各種其他格式。可以從頭開始創建新文件並將其保存為相關支持的格式。 Aspose.Slides 是一個獨立的 API,用於創建、解析或操作演示文稿、幻燈片和元素,它不依賴於 Microsoft 或 OpenOffice 等任何軟件。Online PPSX Merger Live Demos
Merge PPSX documents right now by visiting our Live Demos website . The live demo has the following benefits
PPSX 什麼是 PPSX 文件格式
PPSX, Power Point Slide Show, file are created using Microsoft PowerPoint 2007 and above for Slide Show purpose. It is an update to the PPS file format that was supported by Microsoft PowerPoint 97-2003 versions. When a PPSX file is shared with another user and opened, it starts as PowerPoint show unlike PPTX file that opens in editable mode. The sequence of slide show is the same as in the original presentation. All the slides accompany the images, sounds and other embedded media accompany the presentation slides to the PPSX during the slideshow.
閱讀更多