Denna handledning beskriver hur man tar bort bakgrund i PowerPoint med Java REST API. Du kommer att lära dig hur man tar bort bakgrund i PowerPoint med Java Low Code API med den Java-baserade Cloud SDK. Detaljer kommer att diskuteras för att ta bort bakgrundsbilder från alla eller valda bilder i presentationen.
Nödvändig förutsättning
Ladda ner Aspose.Slides Cloud SDK for Java for deleting slides background
Ställ in Java-projekt med ovanstående SDK för att ta bort bilden från bakgrunden
Steg för att ta bort bakgrund i PowerPoint med Java REST-gränssnitt
- Skapa SlidesApi-objektet med klient-ID och hemlighet för att ta bort bildbakgrunden
- Ladda upp målpresentationen med en bild med en bildbakgrund
- Anropa metoden DeleteBackground() genom att ange den uppladdade presentationen och bildnummer
- Ladda ner den uppdaterade presentationen efter att ha tagit bort bakgrunden
Dessa steg beskriver hur man tar bort bildbakgrund i PowerPoint med Java REST Interface. Skapa SlidesApi med hjälp av klient-ID/hemlighet och ladda upp källpresentationen med bakgrundsbilder. Anropa metoden DeleteBackground() genom att tillhandahålla den uppladdade presentationen och bildindexet från 1.
Kod för att ta bort bakgrund i Power Point med 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); | |
} | |
} |
Den här koden har visat hur man tar bort bakgrund från PowerPoint-presentation med Java RESTful Service. Du kan upprepa denna process genom att iterera igenom alla bilder i presentationen och anropa metoden DeleteBackground() . Bilder kan filtreras genom att kontrollera egenskaperna för varje bild och ta bort bakgrundsbilder endast från de valda bilderna.
Den här artikeln har lärt oss att ta bort bakgrundsbilden från en bild. Om du vill skapa bildbakgrunden, se artikeln om Använd bild som bakgrund i PowerPoint med Java REST API.