Animáljon PowerPoint diákat a Java REST API-val

Kövesse ezt a cikket, ha animálhatja a PowerPoint diákat Java REST API-val. Megtanulja a diavetítés átmenetek beállítását Java Low Code API-val a Java Cloud API segítségével. Megtanulhatja, hogyan módosíthat egy meglévő PowerPoint-prezentációt, ha különféle átmeneti effektusokat állít be a kívánt diákba.

Előfeltétel

A Slide Transition hozzáadásának lépései Java REST API-val

  1. Állítsa be a hitelesítési adatokat egy SlidesApi objektum létrehozásához az átmenetek hozzáadásához
  2. Az átmenetek hozzáadásához töltse fel a prezentációt a felhőtárhelyre
  3. Hozzon létre egy új diát az átmenet beállításához
  4. Hozzon létre egy objektumot a SlideShowTransition osztályból az átmeneti jellemzők beállításához
  5. Állítsa be az átmenet beállításait a SlideShowTransition objektumban
  6. Hívja a UpdateSlide() metódust a kívánt dia átmenetének beállításához
  7. Mentse el a kimeneti prezentációt új átmenetekkel

Ezek a lépések leírják a PowerPoint átmenetek Java REST felülettel hozzáadásának folyamatát. Töltse fel a prezentációt, hozzon létre egy új csúszást, adjon hozzá egy új átmeneti objektumot, és állítsa be a kívánt tulajdonságokat a prezentációban. Végül hívja meg az UpdateSlide() függvényt, hogy az új átmenetet egy meglévő diára állítsa.

Kód animáció és átmenet hozzáadásához a PowerPointban Java alapú API-val

import com.aspose.slides.ApiException;
import com.aspose.slides.api.SlidesApi;
import com.aspose.slides.model.SlideComment;
import com.aspose.slides.model.SlideCommentBase;
import com.aspose.slides.model.SlideComments;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.util.ArrayList;
public class Example_AddSlideTransitionInPresentation {
protected static SlidesApi presentationApi;
public Example_AddSlideTransitionInPresentation() {
if (presentationApi == null) {
presentationApi = new SlidesApi("appSid", "appKey");
}
}
public void addSlideTransition() throws ApiException, IOException {
String localPath = "/home/downloads/";
String fileName = "Sample.pptx";
String storageFolderName = "TempTests";
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null);
SlideComment comment = new SlideComment ();
comment.setText("Master comment here.");
comment.setAuthor("Mr. John");
SlideComment subComment = new SlideComment ();
subComment.setText("Here is the sub-comment.");
subComment.setAuthor("Mr. Paul");
ArrayList<SlideCommentBase> subComments = new ArrayList<SlideCommentBase>();
subComments.add(subComment);
comment.childComments(subComments);
// Add slide comments
SlideComments comments = presentationApi.createComment(fileName, 2, comment, null, null, storageFolderName, null);
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null);
// Copy the downloaded presentation with new comments to the local directory
copyFile(presentationFile, new File(localPath, fileName));
System.out.println("Presentation slide comment is set and copied to: " + localPath + fileName);
}
public static byte[] readFileToByteArray(String filePath) throws IOException {
Path path = new File(filePath).toPath();
return Files.readAllBytes(path);
}
private void copyFile(File sourceFile, File targetFile) throws IOException {
if (sourceFile == null || !sourceFile.exists()) {
throw new IOException("Source file does not exist: " + sourceFile);
}
// Ensure the target directory exists
Path targetPath = targetFile.toPath();
Files.createDirectories(targetPath.getParent());
// Copy the file
Files.copy(sourceFile.toPath(), targetPath, StandardCopyOption.REPLACE_EXISTING);
}
}

Ez a kód bemutatja a PowerPoint diaátmenet beállítását Java REST API-val. A SlideShowTransition osztály számos tulajdonságot tartalmaz, például AdvanceAfter, AdvanceAfterTime, AdvanceOnClick, SoundMode, SoundName stb. Ugyanazt az átmenetet használhatja több diához, ha meghívja az UpdateSlide() függvényt az összes kívánt diához.

Ez a cikk elvezetett minket a PowerPoint prezentációs átmenetek használatához a Java RESTful Service szolgáltatással. Ha szakaszokat szeretne hozzáadni egy prezentációs diához, tekintse meg a Adjon hozzá szakaszokat a PowerPointban a Java REST API segítségével című cikket.

 Magyar