แบ่งสไลด์ด้วย Java REST API

ทำตามบทความนี้เพื่อ แยกสไลด์ด้วย Java REST API คุณจะได้เรียนรู้วิธี แยก PPTX ด้วย API ที่ใช้ Java โดยอัตโนมัติโดยใช้ Cloud SDK ที่ใช้ Java ซึ่งจะแบ่งปันคุณสมบัติทั้งหมดที่จำเป็นสำหรับการปรับแต่งกระบวนการแปลง

ข้อกำหนดเบื้องต้น

ขั้นตอนการแยก PPT ด้วย Java Low Code API

  1. สร้างอ็อบเจ็กต์ของคลาส SlidesApi โดยกำหนด ID ไคลเอนต์และความลับ
  2. อัปโหลดงานนำเสนอต้นฉบับไปยังพื้นที่เก็บข้อมูลบนคลาวด์โดยตั้งชื่อเฉพาะ
  3. เรียกใช้เมธอด Split() โดยใช้ชื่อไฟล์ที่อัปโหลด รูปแบบภาพเอาท์พุต สไลด์เริ่มต้น และหมายเลขสไลด์สุดท้าย
  4. วิเคราะห์สไลด์ทั้งหมดในวัตถุการตอบสนอง
  5. ดาวน์โหลดภาพสไลด์แต่ละภาพโดยใช้ชื่อภาพในสตริง Href
  6. บันทึกภาพที่ดาวน์โหลดลงในดิสก์

ขั้นตอนเหล่านี้จะอธิบายวิธีพัฒนาเครื่องมือแยก PowerPoint ด้วย Java REST Interface สร้างอ็อบเจ็กต์ SlidesApi อัปโหลดไฟล์นำเสนอต้นฉบับ และเรียกใช้เมธอด Split() โดยให้ข้อมูลที่จำเป็น วิเคราะห์การตอบสนองของ API และบันทึกภาพทั้งหมดที่สร้างขึ้นกับสไลด์แต่ละภาพบนดิสก์ภายในเครื่อง

โค้ดสำหรับ PowerPoint Splitter พร้อม Java RESTful Service

import com.aspose.slides.ApiException;
import com.aspose.slides.api.SlidesApi;
import com.aspose.slides.model.*;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
public class Example_SplitPresentationSlides {
protected static SlidesApi presentationApi;
public Example_SplitPresentationSlides() {
if (presentationApi == null) {
presentationApi = new SlidesApi("appSid", "appKey");
}
}
public void SplitPresentation() throws ApiException, IOException {
String localPath = "/home/downloads/";
String fileName = "TestPresentation.pptx";
String storageFolderName = "TempTests";
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(storageFolderName+localPath + fileName),null);
ExportOptions options = new ExportOptions();
// Split the 2nd and 3rd slides and save them to PNG format.
SplitDocumentResult response = presentationApi.split(fileName, options, SlideExportFormat.PNG,720, 540,2, 3,
storageFolderName, null, storageFolderName, null, null);
for (ResourceUri slide : response.getSlides())
{
System.out.println(slide.getHref());
String imageName = slide.getHref().substring(slide.getHref().lastIndexOf('/') + 1);
File imageFile = presentationApi.downloadFile(storageFolderName + imageName, null, null);
// Copy the downloaded presentation to the local directory
copyFile(imageFile, new File(localPath, imageName));
}
System.out.println("Presentation splitted to image copied to: " + localPath);
}
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 Interface* วิธี Split() ต้องใช้ชื่อไฟล์ที่อัปโหลด รูปแบบภาพเอาต์พุตโดยใช้ตัวระบุ SlideExportFormat จากดัชนีไปยังดัชนีเพื่อกำหนดช่วงของสไลด์ Href ของแต่ละรายการในคอลเล็กชันสไลด์ประกอบด้วยการอ้างอิงไปยังภาพออนไลน์ที่สร้างโดย API และสามารถใช้สำหรับการดาวน์โหลดภาพได้

บทความนี้สอนให้เราพัฒนาโปรแกรมแยก PPTX ด้วย Java RESTful Service หากคุณต้องการผสานงานนำเสนอ โปรดดูบทความใน ผสานการนำเสนอด้วย Java REST API

 ไทย