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 に変換する方法
Aspose.Slides for C++ と Aspose.Words for C++ をインストールします。
Presentation クラスと Doc クラスのインスタンスを作成します。
Word に変換する PPT プレゼンテーションを読み込みます。
スライドの内容に基づいて画像とテキストを生成します。
結果の Word ドキュメントを保存します。
無料のオンラインコンバーター
その他のサポートされている変換
PowerPoint を他の形式のファイルに変換することもできます