在 Java 中將 PPT 轉換為 Word
強大的跨平台 Java API,無需 Microsoft PowerPoint 或 Office 即可使用 Java 代碼將 PowerPoint 轉換為 Word
使用 Aspose.Slides 和 Aspose.Words 將 PowerPoint 轉換為 Word
Aspose.Slides for Java 和 [Aspose.Words for Java]( https://products.aspose.com/ words/java/) 是功能強大的 Java 庫,用於操作和轉換 PowerPoint 演示文稿、Word 文檔和其他文件。將 PowerPoint 轉換為 Word 時,實際上是將演示文稿幻燈片的內容移動到 Word 文檔中的頁面。
在 Java 中將 PowerPoint 轉換為 Word
幾行代碼即可快速將PPT轉Word
將 PowerPoint 轉換為 Word 的 Java 代碼
Presentation pres = new Presentation(inputPres);
try {
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
for (ISlide slide : pres.getSlides())
{
// generates and inserts slide image
BufferedImage bitmap = slide.getThumbnail(1, 1);
builder.insertImage(bitmap);
// inserts slide's texts
for (IShape shape : slide.getShapes())
{
if (shape instanceof AutoShape)
{
builder.writeln(((AutoShape)shape).getTextFrame().getText());
}
}
builder.insertBreak(BreakType.PAGE_BREAK);
}
doc.save(outputDoc);
} finally {
if (pres != null) pres.dispose();
}
如何將 PPT 轉換為 Word
安裝 Aspose.Slides for Java 和 Aspose.Words for Java
創建 Presentation 類和 Doc 類的實例。
加載要轉換為 Word 的 PPT 演示文稿。
根據幻燈片的內容生成圖像和文本。
保存生成的 Word 文檔。
免費在線轉換器
其他支持的轉換
您還可以將 PowerPoint 轉換為其他格式的文件