ลบพื้นหลังใน PowerPoint ด้วย Java REST API

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

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

ขั้นตอนการลบพื้นหลังใน PowerPoint ด้วยอินเทอร์เฟซ Java REST

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

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

โค้ดการลบพื้นหลังใน Power Point ด้วย Java RESTful Service

import com.aspose.slides.ApiException;
import com.aspose.slides.api.SlidesApi;
import com.aspose.slides.model.SlideBackground;
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_DeletePresentationBackgroundImage {
protected static SlidesApi presentationApi;
public Example_DeletePresentationBackgroundImage() {
if (presentationApi == null) {
presentationApi = new SlidesApi("appSid", "appKey");
}
}
public void deleteBackgroundImage() throws ApiException, IOException {
String localPath = "/home/downloads/";
String fileName = "Sample.pptx";
String storageFolderName = "TempTests";
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null);
// Delete slide background image
SlideBackground currentBackground = presentationApi.deleteBackground(fileName, 1, null, storageFolderName, null);
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null);
// Copy the downloaded presentation with new background image to the local directory
copyFile(presentationFile, new File(localPath, fileName));
System.out.println("Presentation slide background image 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 RESTful Service คุณสามารถทำซ้ำขั้นตอนนี้ได้โดยทำซ้ำในสไลด์ทั้งหมดในงานนำเสนอและเรียกใช้เมธอด DeleteBackground() คุณสามารถกรองสไลด์ได้โดยตรวจสอบคุณสมบัติของแต่ละสไลด์และลบเฉพาะรูปภาพพื้นหลังจากสไลด์ที่เลือกเท่านั้น

บทความนี้สอนให้เราลบภาพพื้นหลังออกจากสไลด์ หากคุณต้องการสร้างภาพพื้นหลัง โปรดดูบทความใน ใช้รูปภาพเป็นพื้นหลังใน PowerPoint ด้วย Java REST API

 ไทย