Norėdami animuoti PowerPoint skaidres su Java REST API, vadovaukitės šiuo straipsniu. Išmoksite nustatyti skaidrių demonstravimo perėjimus su Java Low Code API naudodami Java Cloud API. Išmoksite modifikuoti esamą PowerPoint pristatymą, nustatydami įvairius perėjimo efektus norimose skaidrėse.
Būtina sąlyga
Atsisiųsti Aspose.Slides Cloud SDK for Java for inserting transitions in the slides
Nustatykite „Java“ projektą naudodami aukščiau pateiktą SDK, kad skaidrėje pridėtumėte animaciją
Veiksmai, kaip pridėti skaidrės perėjimą naudojant Java REST API
- Nustatykite kredencialus, kad sukurtumėte SlidesApi objektą perėjimams pridėti
- Įkelkite pristatymą į debesies saugyklą, kad galėtumėte pridėti perėjimų
- Sukurkite naują skaidrę, kad nustatytumėte perėjimą
- Sukurkite SlideShowTransition klasės objektą perėjimo charakteristikoms nustatyti
- Nustatykite perėjimo nustatymus objekte SlideShowTransition.
- Norėdami nustatyti norimos skaidrės perėjimą, iškvieskite metodą UpdateSlide()
- Išsaugokite išvesties pristatymą su naujais perėjimais
Šie veiksmai aprašo PowerPoint perėjimų pridėjimo su Java REST sąsaja procesą. Įkelkite pristatymą, sukurkite naują skidded, pridėkite prie jo naują perėjimo objektą ir nustatykite norimas pristatymo savybes. Galiausiai iškvieskite UpdateSlide(), kad nustatytumėte naują perėjimą į esamą skaidrę.
Kodas animacijos ir perėjimo pridėjimui „PowerPoint“ naudojant „Java“ pagrįstą API
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); | |
} | |
} |
Šis kodas rodo, kaip nustatyti PowerPoint skaidrių perėjimą naudojant Java REST API. SlideShowTransition klasėje yra daug savybių, tokių kaip AdvanceAfter, AdvanceAfterTime, AdvanceOnClick, SoundMode, SoundName ir kt. Galite naudoti tą patį perėjimą kelioms skaidrėms, iškviesdami UpdateSlide() visoms norimoms skaidrėms.
Šis straipsnis padėjo mums dirbti su PowerPoint pristatymo perėjimais su Java RESTful Service. Norėdami pridėti skyrių prie pristatymo skaidrės, žr. straipsnį Pridėkite skyrius PowerPoint naudodami Java REST API.