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

使用 C++ 合併 PPTX 文件

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

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

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

Aspose.Slides for C++

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

NuGet

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

命令


PM> Install-Package Aspose.Slides.Cpp

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

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

  1. 加載兩個 PPTX 文件。

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

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

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

系統要求

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

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

合併 PPTX 文件 - C++

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

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

    如何在 Python 中合併 PDF

    關於 Aspose.Slides for C++ API

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

    Online PPTX Merger Live Demos

    Merge PPTX 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 PPTX files.
      It will be merged and concatenated instantly.

    PPTX 什麼是 PPTX 文件格式

    Files with PPTX extension are presentation files created with popular Microsoft PowerPoint application. Unlike the previous version of presentation file format PPT which was binary, the PPTX format is based on the Microsoft PowerPoint open XML presentation file format. 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.

    閱讀更多

    其他支持的合併格式

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

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