Excluir plano de fundo no PowerPoint com Java REST API

Este tutorial descreve como excluir plano de fundo em PowerPoint com Java REST API. Você aprenderá como excluir plano de fundo no PowerPoint com Java Low Code API usando o Cloud SDK baseado em Java. Serão discutidos detalhes para excluir imagens de plano de fundo de todos os slides ou de slides selecionados na apresentação.

Pré-requisito

Etapas para remover o fundo no PowerPoint com a interface Java REST

  1. Crie o objeto SlidesApi com o ID do cliente e o segredo para remover o fundo da imagem
  2. Carregue a apresentação de destino com um slide com uma imagem de fundo
  3. Invoque o método DeleteBackground() fornecendo a apresentação carregada e o número do slide
  4. Baixe a apresentação atualizada após remover o fundo

Estas etapas descrevem como excluir o fundo da imagem no PowerPoint com a interface Java REST. Crie o SlidesApi usando o ID/segredo do cliente e carregue a apresentação de origem com imagens de fundo. Invoque o método DeleteBackground() fornecendo a apresentação carregada e o índice de slides começando em 1.

Código para remover fundo no Power Point com 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);
}
}

Este código demonstrou como remover o fundo da apresentação do PowerPoint com o Java RESTful Service. Você pode repetir esse processo iterando por todos os slides da apresentação e chamando o método DeleteBackground(). Os slides podem ser filtrados verificando as propriedades de cada slide e excluindo imagens de fundo somente dos slides selecionados.

Este artigo nos ensinou a remover a imagem de fundo de um slide. Se você quiser criar o fundo da imagem, consulte o artigo em Use a imagem como plano de fundo no PowerPoint com a API REST Java.

 Português