PNG JPG BMP TIFF PPS
Aspose.Slides  for C++

使用 C++ 合併 PPS 文件

使用服務器端 C++ API 的 PPS 文檔合併。

如何使用 C++ 合併 PPS 文件

為了合併 PPS 文件,我們將使用

Aspose.Slides for C++

API 是一個功能豐富、功能強大且易於使用的 C++ 平台文檔合併 API。可以直接下載最新版本,直接打開

NuGet

包管理器,搜索 Aspose.Slides.Cpp 並安裝。您還可以從包管理器控制台使用以下命令。

命令


PM> Install-Package Aspose.Slides.Cpp

在 C++ 中合併 PPS 文件的步驟

只需幾行代碼即可完成與 Aspose.Slides for C++ API 合併和連接的基本文檔。

  1. 加載兩個 PPS 文件。

  2. 使用 get_Slides() 方法遍歷每張幻燈片。

  3. 使用 AddClone 功能與所需文件合併。

  4. 使用 Save() 方法保存在指定路徑

系統要求

Aspose.Slides for C++ 支持所有主要平台和操作系統。請確保您具有以下先決條件。

  • Microsoft Windows 或具有適用於 Windows 32 位、Windows 64 位和 Linux 64 位的 C++ 運行時環境的兼容操作系統。
  • 項目中引用的 C++ DLL 的 Aspose.Slides。
 

合併 PPS 文件 - C++

// The path to the documents directory.
const String sourceFilePath1 = u"SourceFile2.pps";
const String sourceFilePath2 = u"SourceFile3.pps";
const String outputFilePath = u"mergedOutput.pps";

// 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::Pps);  
 
  • 在線合併 PDF 文件

    如何在 Python 中合併 PDF

    關於 Aspose.Slides for C++ API

    Aspose.Slides API 可用於讀取、寫入、操作 Microsoft PowerPoint 文檔並將其轉換為 PDF、XPS、HTML、TIFF、ODP 和各種其他格式。可以從頭開始創建新文件並將其保存為相關支持的格式。 Aspose.Slides 是一個獨立的 API,用於創建、解析或操作演示文稿、幻燈片和元素,它不依賴於 Microsoft 或 OpenOffice 等任何軟件。

    Online PPS Merger Live Demos

    Merge PPS documents right now by visiting our Live Demos website . The live demo has the following benefits

      No need to download Aspose API.
      No need to write any code.
      Just upload your PPS files.
      It will be merged and concatenated instantly.

    PPS 什麼是 PPS 文件格式

    PPS, PowerPoint Slide Show, files are created using Microsoft PowerPoint for Slide Show purpose. PPS file reading and creation is supported by Microsoft PowerPoint 97-2003. The more latest version of this file format is PPSX which is based on Office OpenXML standards. PPS files can still be read by latest versions of Microsoft PowerPoint, but newly created files can only be saved in PPSX file format. When a PPS file is shared with another user and opened, it starts as Powerpoint show unlike PPT file which opens in editable mode.

    閱讀更多

    其他支持的合併格式

    使用 C++,One 還可以合併許多其他文件格式,包括..

    ODP (OpenDocument 演示格式)
    OTP (OpenDocument 標準格式)
    POT (Microsoft PowerPoint 模板文件)
    POTM (微軟 PowerPoint 模板文件)
    POTX (Microsoft PowerPoint 模板演示文稿)
    PPSM (啟用宏的幻燈片放映)
    PPSX (幻燈片放映)
    PPT (微軟PowerPoint 97-2003)
    PPTM (啟用宏的演示文件)
    PPTX (打開 XML 表示格式)