このガイドには、Java REST API を使用して PowerPoint スライドにメモを追加する方法 に関する情報が含まれています。Java ベースの Cloud SDK を使用して、Java RESTful サービスを使用して PowerPoint にスピーカー メモを自動的に追加する 方法を学習します。プレゼンテーションをアップロードし、必要な操作を実行し、更新されたプレゼンテーションをダウンロードする方法を示す完全なサンプル コードもこの記事に含まれています。
前提条件
ダウンロード Aspose.Slides Cloud SDK for Java for inserting notes in the slides
上記のSDKを使用してJavaプロジェクトをセットアップし、スライドにスピーカーノートを追加します。
Java Low Code API を使用して PowerPoint にメモを追加する手順
- スピーカーノートを追加するための ID とシークレットを持つ SlidesApi オブジェクトを作成します。
- プレゼンテーションをクラウドストレージにアップロードしてメモを挿入する
- NotesSlideオブジェクトを作成し、ノートのテキストを設定します
- CreateNotesSlide() メソッドを呼び出してメモを挿入します
- 出力ファイルをダウンロードしてディスクに保存する
これらの手順は、Java RESTful サービスを使用して PowerPoint に発表者のメモを追加する方法をまとめたものです。必要なパラメータを指定して SlidesApi オブジェクトを作成し、ソース プレゼンテーションをアップロードし、メモのテキストを含む NotesSlide オブジェクトを作成します。最後に、CreateNotesSlide() メソッドを呼び出してメモを挿入し、更新されたプレゼンテーションをダウンロードします。
Java REST インターフェイスを使用して PowerPoint にプレゼンテーション ノートを追加するコード
import com.aspose.slides.ApiException; | |
import com.aspose.slides.api.SlidesApi; | |
import com.aspose.slides.model.NotesSlide; | |
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_AddNotesInPresentation { | |
protected static SlidesApi presentationApi; | |
public Example_AddNotesInPresentation() { | |
if (presentationApi == null) { | |
presentationApi = new SlidesApi("appSid", "appKey"); | |
} | |
} | |
public void addSlideNotes() throws ApiException, IOException { | |
String localPath = "/home/downloads/"; | |
String fileName = "Sample.pptx"; | |
String storageFolderName = "TempTests"; | |
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null); | |
NotesSlide notes = new NotesSlide (); | |
notes.setText("Here are the notes for the speaker"); | |
// Add notes on the. third slide | |
NotesSlide currentNotesSlide = presentationApi.createNotesSlide(fileName, 3, notes, null, storageFolderName, null); | |
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null); | |
// Copy the downloaded presentation with new comments to the local directory | |
copyFile(presentationFile, new File(localPath, fileName)); | |
System.out.println("Presentation slide comment is 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 ベースの API を使用して PowerPoint にメモを挿入する方法 を示しています。複数のプレゼンテーションをクラウド ストレージにアップロードし、CreateNotesSlide メソッドを呼び出すときにメモを追加するターゲット プレゼンテーション名を指定できます。その他のパラメータは、スライド番号と、プレゼンテーション用に作成された NotesSlide オブジェクトへの参照です。
この記事では、プレゼンテーション ノートの操作について説明しました。PowerPoint スライドにアニメーションを追加するには、Java REST API で PowerPoint スライドをアニメーション化する の記事を参照してください。