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

使用 C++ 合併 POTX 文件

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

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

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

Aspose.Slides for C++

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

NuGet

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

命令


PM> Install-Package Aspose.Slides.Cpp

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

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

  1. 加載兩個 POTX 文件。

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

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

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

系統要求

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

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

合併 POTX 文件 - C++

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

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

    如何在 Python 中合併 PDF

    關於 Aspose.Slides for C++ API

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

    Online POTX Merger Live Demos

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

    POTX 什麼是 POTX 文件格式

    Files with .POTX extension represent Microsoft PowerPoint template presentations that are created with Microsoft PowerPoint 2007 and above. This format was created to replace the POT file format that is based on the binary file format and is supported with PowerPoint 97-2003. The files generated can be used to create presentations that have same layout and other settings required to be applied to new files. These settings can include styles, backgrounds, colour palette, fonts and defaults. Such files are generated in order to create ready-to-use template files for official use.

    閱讀更多

    其他支持的合併格式

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

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