Hướng dẫn này mô tả cách xóa nền trong PowerPoint bằng Java REST API. Bạn sẽ học cách xóa nền trong PowerPoint bằng Java Low Code API bằng cách sử dụng Cloud SDK dựa trên Java. Chi tiết sẽ được thảo luận để xóa hình ảnh nền khỏi tất cả hoặc các slide đã chọn trong bản trình bày.
Điều kiện tiên quyết
Tải về Aspose.Slides Cloud SDK for Java for deleting slides background
Thiết lập dự án Java với SDK ở trên để xóa hình ảnh khỏi nền
Các bước xóa nền trong PowerPoint bằng giao diện REST Java
- Tạo đối tượng SlidesApi với ID máy khách và bí mật để xóa nền hình ảnh
- Tải lên bài thuyết trình mục tiêu có slide có hình nền
- Gọi phương thức DeleteBackground() bằng cách cung cấp bản trình bày đã tải lên và số trang chiếu
- Tải xuống bản trình bày đã cập nhật sau khi xóa nền
Các bước này mô tả cách xóa nền ảnh trong PowerPoint bằng Giao diện REST Java. Tạo SlidesApi bằng ID/bí mật của máy khách và tải lên bản trình bày nguồn có hình ảnh nền. Gọi phương thức DeleteBackground() bằng cách cung cấp bản trình bày đã tải lên và chỉ mục slide bắt đầu từ 1.
Mã để xóa nền trong Power Point bằng 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); | |
} | |
} |
Mã này đã chứng minh cách xóa nền khỏi bản trình bày PowerPoint bằng Java RESTful Service. Bạn có thể lặp lại quy trình này bằng cách lặp qua tất cả các slide trong bản trình bày và gọi phương thức DeleteBackground(). Có thể lọc các slide bằng cách kiểm tra thuộc tính của từng slide và chỉ xóa hình nền khỏi các slide đã chọn.
Bài viết này hướng dẫn chúng ta cách xóa hình nền khỏi slide. Nếu bạn muốn tạo hình nền cho hình ảnh, hãy tham khảo bài viết về Sử dụng hình ảnh làm nền trong PowerPoint với Java REST API.