JavaでPPTXをWordに変換
Microsoft PowerPoint や Office を使用せずに Java コードを使用して PowerPoint を Word に変換するための強力なクロスプラットフォーム Java API
Aspose.Slides と Aspose.Words を使用して PowerPoint を Word に変換
Aspose.Slides for Java および [Aspose.Words for Java]( https://products.aspose.com/ words/java/) は、PowerPoint プレゼンテーション、Word ドキュメント、およびその他のファイルを操作および変換するために使用される強力な Java ライブラリです。 PowerPoint を Word に変換すると、基本的にプレゼンテーションのスライドの内容が Word 文書のページに移動されます。
Java で PowerPoint を Word に変換する
わずか数行のコードで PPTX を 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();
}
PPTXをWordに変換する方法
Aspose.Slides for Java と Aspose.Words for Java をインストールします。
Presentation クラスと Doc クラスのインスタンスを作成します。
Word に変換する PPTX プレゼンテーションを読み込みます。
スライドの内容に基づいて画像とテキストを生成します。
結果の Word ドキュメントを保存します。
無料のオンラインコンバーター
その他のサポートされている変換
PowerPoint を他の形式のファイルに変換することもできます