Folgen Sie diesem Artikel, um ein PowerPoint mit Java REST API in PDF zu konvertieren. Sie lernen, PowerPoint mit Java REST Interface in PDF umzuwandeln, indem Sie das Java-basierte Cloud SDK verwenden. Verschiedene Eigenschaften und Attribute werden erläutert, um den Konvertierungsprozess anzupassen.
Voraussetzung
Herunterladen Aspose.Slides Cloud SDK for Java for converting presentations to PDF
Richten Sie ein Java-Projekt mit dem oben genannten SDK ein, um PPTX online zu konvertieren
Schritte zum Konvertieren einer PowerPoint-Datei in PDF mit einer Java-basierten API
- Erstellen Sie das SlidesApi-Objekt mit der Client-ID und dem Geheimnis, um PPTX in PDF zu konvertieren
- Laden Sie die Eingabepräsentationsdatei in das FileStream-Objekt
- Definieren Sie das Exportformat als PDF und erstellen Sie eine Liste der Folien zur Konvertierung in PDF
- Rufen Sie die Methode Convert() auf und geben Sie den FileStream, das Exportformat und das Folien-Array an
- Erstellen Sie den Ausgabedateistream und speichern Sie den resultierenden Stream als PDF
Diese Schritte erklären, wie Sie eine PowerPoint-Präsentation mit Java RESTful Service in PDF konvertieren. Erstellen Sie das SlidesApi-Objekt, laden Sie die Präsentationsdatei in den Dateistream, definieren Sie das Ausgabedateiformat, erstellen Sie eine Liste von Folien zum Rendern in PDF und rufen Sie die Convert()-Methode mit all diesen Parametern auf. Speichern Sie den Ausgabestream aus dem API-Aufruf und speichern Sie ihn auf der Festplatte.
Code zum Konvertieren einer PowerPoint-Präsentation in PDF mit der Java REST API
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); | |
} | |
} |
Dieser Code zeigt, wie man PowerPoint mit Java Low Code API als PDF speichert. Das Exportformat enthält viele andere Formate, darunter PPS, PPSX, PPTM, PPSM, SWF usw. Sie können die Reihenfolge der Folien im Array unabhängig von der ursprünglichen Reihenfolge in der Quellpräsentation beliebig festlegen.
In diesem Artikel haben wir gelernt, wie man Folien ins PDF-Format exportiert. Um eine Präsentation von Grund auf neu zu erstellen, lesen Sie den Artikel zu Präsentation mit Java REST API erstellen.