Java REST API ile PowerPoint slaytlarını canlandırmak için bu makaleyi takip edin. Java Cloud API’yi kullanarak Java Low Code API ile slayt gösterisi geçişleri ayarlamayı öğreneceksiniz. İstenilen slaytlarda çeşitli geçiş efektleri ayarlayarak mevcut bir PowerPoint sunumunu değiştirmeyi öğreneceksiniz.
Önkoşul
İndirmek Aspose.Slides Cloud SDK for Java for inserting transitions in the slides
Yukarıdaki SDK ile bir slayda animasyon eklemek için Java projesini kurun
Java REST API ile Slayt Geçişi Ekleme Adımları
- Geçişler eklemek için bir SlidesApi nesnesi oluşturmak üzere kimlik bilgilerini ayarlayın
- Geçişler eklemek için sunuyu Bulut depolama alanına yükleyin
- Geçişi ayarlamak için yeni bir slayt oluşturun
- Geçiş özelliklerini ayarlamak için SlideShowTransition sınıfının bir nesnesini oluşturun
- SlideShowTransition nesnesindeki geçiş ayarlarını belirleyin
- İstenilen slaydın geçişini ayarlamak için UpdateSlide() yöntemini çağırın
- Çıktı sunumunu yeni geçişlerle kaydedin
Bu adımlar, Java REST Arayüzü ile PowerPoint geçişlerini ekleme sürecini açıklar. Sunuyu yükleyin, yeni bir kaydırılmış oluşturun, ona yeni bir geçiş nesnesi ekleyin ve sunuda istenen özellikleri ayarlayın. Son olarak, yeni geçişi mevcut bir slayda ayarlamak için UpdateSlide()‘ı çağırın.
Java tabanlı API ile PowerPoint’te Animasyon ve Geçiş Ekleme Kodu
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); | |
} | |
} |
Bu kod, Java REST API ile PowerPoint slayt geçişinin nasıl ayarlanacağını gösterir. SlideShowTransition sınıfı, AdvanceAfter, AdvanceAfterTime, AdvanceOnClick, SoundMode, SoundName, vb. gibi çok sayıda özellik içerir. Tüm istenen slaytlar için UpdateSlide()‘ı çağırarak aynı geçişi birden fazla slayt için kullanabilirsiniz.
Bu makale bizi Java RESTful Service ile PowerPoint sunum geçişleri üzerinde çalışmaya yönlendirdi. Bir sunum slaydına bölümler eklemek için Java REST API ile PowerPoint’e bölümler ekleyin makalesine bakın.