PowerPoint'te Arka Planı Java REST API ile Sil

Bu eğitimde Java REST API ile PowerPoint‘de arka planın nasıl silineceği anlatılmaktadır. Java tabanlı Cloud SDK’yı kullanarak Java Low Code API ile PowerPoint’te arka planın nasıl silineceğini öğreneceksiniz. Sunumdaki tüm veya seçili slaytlardan arka plan resimlerinin silinmesiyle ilgili ayrıntılar ele alınacaktır.

Önkoşul

Java REST Arayüzü ile PowerPoint’te Arka Planı Kaldırma Adımları

  1. Görüntü arka planını kaldırmak için istemci kimliği ve sırrıyla SlidesApi nesnesini oluşturun
  2. Resimli arka plana sahip bir slayt içeren hedef sunumu yükleyin
  3. Yüklenen sunumu ve slayt numarasını sağlayarak DeleteBackground() yöntemini çağırın
  4. Arkaplanı kaldırdıktan sonra güncellenmiş sunumu indirin

Bu adımlar, Java REST Arayüzü ile PowerPoint’te resim arka planının nasıl silineceğini açıklar. İstemci kimliği/sırrını kullanarak SlidesApi’yi oluşturun ve arka plan resimleriyle kaynak sunumunu yükleyin. 1’den başlayarak yüklenen sunumu ve slayt dizinini sağlayarak DeleteBackground() yöntemini çağırın.

Java RESTful Servisi ile Power Point’te Arka Planı Kaldırma Kodu

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);
}
}

Bu kod, Java RESTful Service ile PowerPoint sunumundan arka planın nasıl kaldırılacağını göstermiştir. Bu işlemi sunumdaki tüm slaytları yineleyerek ve DeleteBackground() metodunu çağırarak tekrarlayabilirsiniz. Slaytlar, her slaydın özelliklerini kontrol ederek ve yalnızca seçili slaytlardan arka plan resimlerini silerek filtrelenebilir.

Bu makale bize bir slayttan arka plan resmini kaldırmayı öğretti. Resim arka planını oluşturmak istiyorsanız, Java REST API ile PowerPoint’te Resmi Arka Plan Olarak Kullanma makalesine bakın.

 Türkçe