C++ で PPT を Word に変換する

Microsoft PowerPoint や Office を使用せずに C++ コードを使用して PowerPoint を Word に変換するための強力なクロスプラットフォーム C++ API

Aspose.Slides と Aspose.Words を使用して PowerPoint を Word に変換

Aspose.Slides for C++ および [Aspose.Words for C++]( https://products.aspose.com/ words/cpp/) は、PowerPoint プレゼンテーション、Word ドキュメント、およびその他のファイルの操作と変換に使用される強力な C++ ライブラリです。 PowerPoint を Word に変換すると、基本的にプレゼンテーションのスライドの内容が Word 文書のページに移動されます。

C++ で PowerPoint を Word に変換する

わずか数行のコードで PPT を Word にすばやく変換できます

PowerPoint を Word に変換するための C++ コード

auto presentation = MakeObject<Presentation>();
auto doc = MakeObject<Aspose::Words::Document>();
auto builder = MakeObject<Aspose::Words::DocumentBuilder>(doc);

for (const auto& slide : presentation->get_Slides())
{
    // generates and inserts slide image
    auto bitmap = slide->GetThumbnail(1.0f, 1.0f);
    builder->InsertImage(bitmap);

    // inserts slide's texts
    for (const auto& shape : slide->get_Shapes())
    {
        if (ObjectExt::Is<AutoShape>(shape))
        {
            auto autoShape = System::AsCast<AutoShape>(shape);
            builder->Writeln(autoShape->get_TextFrame()->get_Text());
        }
    }

    builder->InsertBreak(Aspose::Words::BreakType::PageBreak);
}

PPT を Word に変換する方法

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

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

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

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

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

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

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

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

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