在 Java 中合併 OTP 格式
使用服務器端 Java API 的本機 OTP 文檔合併。
如何使用 Java 合併 OTP 文件
為了合併 OTP 文件,我們將使用
API是一個功能豐富、功能強大且易於使用的Java平台合併API。您可以直接從
並通過將以下配置添加到 pom.xml 將其安裝在基於 Maven 的項目中。
存儲庫
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://releases.aspose.com/java/repo/</url>
</repository>
依賴
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-slides</artifactId>
<version>version of aspose-slides API</version>
<classifier>jdk17</classifier>
</dependency>
在 Java 中合併 OTP 文件的步驟
只需幾行代碼即可完成與 Aspose.Slides for Java API 合併和連接的基本文檔。
使用 Presentation 類的實例加載第一個 OTP 文件。
使用 Presentation 類的實例加載第二個 OTP 文檔。
循環瀏覽第二個 OTP 文件的每張幻燈片。
在每次迭代中,使用 addClone() 添加帶有第一個文件的幻燈片。
使用 save() 方法保存到指定路徑
系統要求
Aspose.Slides for Java 支持所有主要平台和操作系統。請確保您具有以下先決條件。
- Microsoft Windows 或與 JSP/JSF 應用程序和桌面應用程序的 Java 運行時環境兼容的操作系統。
- 直接從 Java 獲取最新版本的 Aspose.Slides Maven 。
合併 OTP 文件 - Java
// Load first OTP File
Presentation prest1 = new Presentation("prest1.otp");
// Load second OTP File
Presentation prest2 = new Presentation("prest2.otp");
// Merge
for (ISlide slide : prest2.getSlides()) {
// Merge from source to target
prest1.getSlides().addClone(slide);
}
// Save the File
prest1.save("merged-presentation.otp", SaveFormat.Otp);
在線合併 PDF 文件
關於 Aspose.Slides for Java API
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.
閱讀更多