Հետևեք այս հոդվածին, որպեսզի անիմավորեք PowerPoint սլայդները Java REST API-ով: Դուք կսովորեք սահմանել սլայդշոուների անցումներ Java Low Code API-ի միջոցով՝ օգտագործելով Java Cloud API: Դուք կսովորեք փոփոխել գոյություն ունեցող PowerPoint ներկայացումը` ցանկալի սլայդներում տարբեր անցումային էֆեկտներ դնելով:
Նախապայման
Բեռնել Aspose.Slides Cloud SDK for Java for inserting transitions in the slides
Տեղադրեք Java նախագիծը վերը նշված SDK-ով` սլայդում անիմացիա ավելացնելու համար
Java REST API-ով սլայդների անցում ավելացնելու քայլեր
- Սահմանեք հավատարմագրերը՝ SlidesApi օբյեկտ ստեղծելու համար՝ անցումներ ավելացնելու համար
- Ներբեռնեք ներկայացումը Cloud պահեստում՝ անցումներ ավելացնելու համար
- Ստեղծեք նոր սլայդ՝ անցումը կարգավորելու համար
- Ստեղծեք SlideShowTransition դասի օբյեկտ՝ անցումային բնութագրերը սահմանելու համար
- Սահմանեք անցման կարգավորումները SlideShowTransition օբյեկտում
- Զանգահարեք UpdateSlide() մեթոդը՝ ցանկալի սլայդի անցումը սահմանելու համար
- Պահպանեք ելքային ներկայացումը նոր անցումներով
Այս քայլերը նկարագրում են PowerPoint-ի անցումները Java REST ինտերֆեյսի ավելացման գործընթացը: Ներբեռնեք շնորհանդեսը, ստեղծեք նոր skidded, ավելացրեք նոր անցումային օբյեկտ և սահմանեք ցանկալի հատկությունները ներկայացման մեջ: Վերջապես, զանգահարեք UpdateSlide()՝ նոր անցումը գոյություն ունեցող սլայդին սահմանելու համար:
Java-ի վրա հիմնված API-ով PowerPoint-ում անիմացիա և անցում ավելացնելու կոդ
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); | |
} | |
} |
Այս կոդը ցույց է տալիս, թե ինչպես կարելի է սահմանել PowerPoint սլայդների անցումը Java REST API-ով: SlideShowTransition դասը պարունակում է մեծ թվով հատկություններ, ինչպիսիք են AdvanceAfter, AdvanceAfterTime, AdvanceOnClick, SoundMode, SoundName և այլն: Դուք կարող եք օգտագործել նույն անցումը բազմաթիվ սլայդների համար՝ զանգահարելով UpdateSlide() բոլոր ցանկալի սլայդների համար:
Այս հոդվածը մեզ ուղղորդել է աշխատել PowerPoint-ի ներկայացման անցումների հետ Java RESTful Service-ով: Ներկայացման սլայդին բաժիններ ավելացնելու համար տես Ավելացրեք բաժիններ PowerPoint-ում Java REST API-ով-ի հոդվածը: