使用 Java REST API 将 PowerPoint 转换为 PDF

按照本文使用 Java REST API 将 PowerPoint 转换为 PDF。您将学习使用基于 Java 的 Cloud SDK 通过 Java REST 接口将 PowerPoint 转换为 PDF。讨论了不同的属性和特性以自定义转换过程。

先决条件

使用基于 Java 的 API 将 PowerPoint 文件转换为 PDF 的步骤

  1. 使用客户端 ID 和密钥创建 SlidesApi 对象,以将 PPTX 转换为 PDF
  2. 将输入演示文件加载到 FileStream 对象中
  3. 将导出格式定义为 PDF,并创建要转换为 PDF 的幻灯片列表
  4. 调用 Convert() 方法并提供 FileStream、导出格式和幻灯片数组
  5. 创建输出文件流并将结果流保存为 PDF

这些步骤说明如何使用 Java RESTful 服务将 PowerPoint 演示文稿转换为 PDF。创建 SlidesApi 对象,将演示文稿文件加载到文件流中,定义输出文件格式,创建要呈现为 PDF 的幻灯片列表,然后使用所有这些参数调用 Convert() 方法。保存 API 调用的输出流并将其保存在磁盘上。

使用 Java REST API 将 PowerPoint 演示文稿转换为 PDF 的代码

import com.aspose.slides.ApiException;
import com.aspose.slides.api.SlidesApi;
import com.aspose.slides.model.ExportFormat;
import com.aspose.slides.model.ExportOptions;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.util.Arrays;
public class Example_PresentationToPdf {
protected static SlidesApi presentationApi;
public Example_PresentationToPdf() {
if (presentationApi == null) {
presentationApi = new SlidesApi("appSid", "appKey");
}
}
public void PresentationToPdf() throws ApiException, IOException {
String localPath = "/home/downloads/";
String fileName = "Sample.pptx";
String outputPdfName = "Sample.pdf";
File pdfile = presentationApi.convert(readFileToByteArray(localPath + fileName), ExportFormat.PDF,null, null, null,
Arrays.asList( 1, 3,4,9), new ExportOptions());
// Copy the downloaded PDF to the local directory
copyFile(pdfile, new File(localPath, outputPdfName));
System.out.println("Presentation converted to PDF and copied to: " + localPath + outputPdfName);
}
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 Low Code API 将 PowerPoint 保存为 PDF。导出格式包含许多其他格式,包括 PPS、PPSX、PPTM、PPSM、SWF 等。您可以设置数组中幻灯片的任意顺序,而不管源演示文稿中的原始顺序如何。

本文教我们如何将幻灯片导出为 PDF。若要从头开始创建演示文稿,请参阅 使用 Java REST API 创建演示文稿 上的文章。

 简体中文