スライドを1つのプレゼンテーションから別のJavaを使用してコピー
4752 ワード
この記事では、1つのPowerPointプレゼンテーションからスライドをコピーする方法を紹介します.Java用プレゼンテーション.
jarの依存性をインポートする
● free libraryをダウンロードして、それを解凍してください.その後、尖塔を追加します.プレゼンテーション.プロジェクトに依存するファイル.
● MavenプロジェクトにJAR依存を追加するには、POMに次の構成を追加します.XML
jarの依存性をインポートする
● free libraryをダウンロードして、それを解凍してください.その後、尖塔を追加します.プレゼンテーション.プロジェクトに依存するファイル.
● MavenプロジェクトにJAR依存を追加するには、POMに次の構成を追加します.XML
<repositories>
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.presentation.free</artifactId>
<version>3.9.0</version>
</dependency>
</dependencies>
サンプルコードimport com.spire.presentation.FileFormat;
import com.spire.presentation.Presentation;
public class CopySlides {
public static void main(String[] args) throws Exception {
//Create a Presentation object to load the first document
Presentation pptOne= new Presentation();
pptOne.loadFromFile("test1.pptx");
//Create a Presentation object to load the second document
Presentation pptTwo = new Presentation();
pptTwo.loadFromFile("input1.pptx");
//Insert the specific slide of the first document to the specified position on the second document
pptTwo.getSlides().insert(1,pptOne.getSlides().get(0));
//Append the specific slide of the first document to the end of the second document
pptTwo.getSlides().append(pptOne.getSlides().get(2));
//Save the second document to file
pptTwo.saveToFile("CopySlides.pptx", FileFormat.PPTX_2013);
}
}
Reference
この問題について(スライドを1つのプレゼンテーションから別のJavaを使用してコピー), 我々は、より多くの情報をここで見つけました https://dev.to/codesharing/copy-slides-from-one-presentation-to-another-using-java-3b20テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol