تحريك شرائح PowerPoint باستخدام Java REST API

اتبع هذه المقالة لتحريك شرائح PowerPoint باستخدام واجهة برمجة تطبيقات Java REST. ستتعلم كيفية تعيين انتقالات عرض الشرائح باستخدام واجهة برمجة تطبيقات Java Low Code باستخدام واجهة برمجة تطبيقات Java Cloud. ستتعلم تعديل عرض تقديمي موجود في PowerPoint عن طريق تعيين تأثيرات انتقال مختلفة في الشرائح المطلوبة.

متطلب أساسي

خطوات إضافة انتقال الشريحة باستخدام واجهة برمجة تطبيقات Java REST

  1. قم بتعيين بيانات الاعتماد لإنشاء كائن SlidesApi لإضافة الانتقالات
  2. قم بتحميل العرض التقديمي إلى التخزين السحابي لإضافة التحولات
  3. إنشاء شريحة جديدة لتعيين الانتقال
  4. إنشاء كائن من فئة SlideShowTransition لتعيين خصائص الانتقال
  5. تعيين إعدادات الانتقال في كائن SlideShowTransition
  6. اتصل بطريقة UpdateSlide() لتعيين انتقال الشريحة المطلوبة
  7. حفظ العرض التقديمي الناتج مع الانتقالات الجديدة

تصف هذه الخطوات عملية إضافة انتقالات PowerPoint باستخدام واجهة Java REST. قم بتحميل العرض التقديمي، وإنشاء شريحة جديدة، وإضافة كائن انتقال جديد إليها، وتعيين الخصائص المطلوبة في العرض التقديمي. وأخيرًا، اتصل بـ UpdateSlide() لتعيين الانتقال الجديد إلى شريحة موجودة.

كود إضافة الرسوم المتحركة والانتقالات في PowerPoint باستخدام واجهة برمجة التطبيقات المستندة إلى Java

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. تحتوي فئة SlideShowTransition على عدد كبير من الخصائص مثل AdvanceAfter وAvvtAdvanceTime وAvvOnClick وSoundMode وSoundName وما إلى ذلك. يمكنك استخدام نفس الانتقال لشرائح متعددة عن طريق استدعاء UpdateSlide() لجميع الشرائح المطلوبة.

لقد أرشدتنا هذه المقالة إلى العمل مع انتقالات عرض PowerPoint باستخدام خدمة Java RESTful. لإضافة أقسام إلى شريحة عرض تقديمي، راجع المقالة على إضافة أقسام في PowerPoint باستخدام Java REST API.

 عربي