将 DOCX 转换为 PPTX
Contents
[
Hide
]
您是否正在寻找如何在 Java 中将 DOC 或 DOCX 转换为 PowerPoint PPTX?这可以通过 Aspose.Words 和 Aspose.PDF for Java 轻松完成,它们是 Conholdate.Total for Java 的一部分。
在 Java 中将 DOC DOCX 转换为 PPTX
要将 DOC、DOCX 或任何其他 Word 格式转换为 PPTX,您可以按照以下步骤操作。
- 加载 DOC 或 DOCX 文件
- 将其保存为 PDF 流
- 加载 PDF 流
- 保存为 PPTX
以下代码详细显示了这些步骤。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete example, please visit https://docs.conholdate.com/java/word-to-powerpoint/ | |
// Open a Word file | |
com.aspose.words.Document doc = new com.aspose.words.Document("Input.docx"); | |
var pdfOutStream = new ByteArrayOutputStream(); | |
// Save the document in PDF format | |
doc.save(pdfOutStream, com.aspose.words.SaveFormat.PDF); | |
InputStream pdfInStream = new ByteArrayInputStream(pdfOutStream.toByteArray()); | |
//Read the PDF Stream | |
com.aspose.pdf.Document pdfDocument = new com.aspose.pdf.Document(pdfInStream); | |
// Save the output to PPTX | |
pdfDocument.save("word-to-powerpoint.pptx", com.aspose.pdf.SaveFormat.Pptx); |