JavaでPPTを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 に変換する

わずか数行のコードで 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 に変換する方法

  1. Aspose.Slides for JavaAspose.Words for Java をインストールします。

  2. Presentation クラスと Doc クラスのインスタンスを作成します。

  3. Word に変換する PPT プレゼンテーションを読み込みます。

  4. スライドの内容に基づいて画像とテキストを生成します。

  5. 結果の Word ドキュメントを保存します。

無料のオンラインコンバーター

Python で PPT を HTML に変換する方法

その他のサポートされている変換

PowerPoint を他の形式のファイルに変換することもできます