이 가이드에는 Java REST API를 사용하여 PowerPoint 슬라이드에 메모를 추가하는 방법에 대한 정보가 들어 있습니다. Java 기반 Cloud SDK를 사용하여 Java RESTful Service를 사용하여 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 Service로 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 슬라이드 애니메이션 만들기의 문서를 참조하세요.