Java REST API を使用して PowerPoint の背景を削除する

このチュートリアルでは、Java REST API を使用して PowerPoint の背景を削除する方法 について説明します。Java ベースの Cloud SDK を使用して、Java Low Code API を使用して PowerPoint の背景を削除する方法 を学習します。プレゼンテーションのすべてのスライドまたは選択したスライドから背景画像を削除する方法について詳細に説明します。

前提条件

Java REST インターフェイスを使用して PowerPoint の背景を削除する手順

  1. 画像の背景を削除するためのクライアントIDとシークレットを使用してSlidesApiオブジェクトを作成します。
  2. 画像の背景を持つスライドを含む対象プレゼンテーションをアップロードします
  3. アップロードしたプレゼンテーションとスライド番号を指定してDeleteBackground()メソッドを呼び出します。
  4. 背景を削除した後、更新されたプレゼンテーションをダウンロードします

これらの手順では、Java REST インターフェイスを使用して PowerPoint で画像の背景を削除する方法について説明します。クライアント ID/シークレットを使用して SlidesApi を作成し、背景画像を含むソース プレゼンテーションをアップロードします。アップロードされたプレゼンテーションと 1 から始まるスライド インデックスを指定して、DeleteBackground() メソッドを呼び出します。

Java RESTful サービスを使用して PowerPoint の背景を削除するコード

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

このコードは、Java RESTful サービスを使用して PowerPoint プレゼンテーションから背景を削除する方法を示しています。プレゼンテーション内のすべてのスライドを反復処理し、DeleteBackground() メソッドを呼び出すことで、このプロセスを繰り返すことができます。各スライドのプロパティを確認し、選択したスライドからのみ背景画像を削除することで、スライドをフィルターできます。

この記事では、スライドから背景画像を削除する方法を説明しました。画像背景を作成する場合は、Java REST API を使用して PowerPoint で画像を背景として使用する の記事を参照してください。

 日本語