在某些情况下,您可能有一个 PowerPoint 演示文稿并希望创建一个详细描述其内容的文档。为此,您可以将PPTX / PPT文件转换为 Word 格式并修改 Word 文件以输入每张幻灯片的详细信息。在本文中,您将学习如何使用 C++ 以编程方式将 PowerPoint PPTX/PPT 文件转换为 Word 格式。
用于将 PowerPoint 文件转换为 Word 格式的 C++ API
为了将 PowerPoint 演示文稿转换为 Word 文档,我们将使用Aspose.Slides for C++和Aspose.Words for C++ API。前者是用于处理 PowerPoint 文件的 API,而后者用于创建、读取和修改 Word 文档。我们将使用 Aspose.Slides for C++ API 将 PowerPoint 文件转换为 HTML 格式,使用 Aspose.Words for C++ API 将生成的 HTML 转换为 Word 格式。您可以通过 NuGet 安装 API,也可以直接从下载 部分下载它们 。
PM> Install-Package Aspose.Slides.Cpp
PM> Install-Package Aspose.Words.Cpp
使用 C++ 将 PowerPoint PPTX/PPT 文件转换为 DOCX 格式
以下是使用 C++ 将 PowerPoint PPTX/PPT 文件转换为 DOCX 格式的步骤。
- 使用Aspose::Slides::Presentation 类加载 PowerPoint 文件 。
- 创建MemoryStream类的实例。
- 将演示文稿保存到流中。
- 使用流对象创建Aspose::Words::Document类的实例。
- 使用Aspose::Words::Document->Save(const System::String & fileName, Aspose::Words::SaveFormat saveFormat)方法保存 DOCX 文件。
以下示例代码显示了如何使用 C++ 将 PowerPoint PPTX/PPT 文件转换为 DOCX 格式。
获得免费许可证
为了在没有评估限制的情况下试用 API,您可以申请 免费的临时许可证。
结论
在本文中,您学习了如何使用 C++ 将 PowerPoint PPTX/PPT 文件转换为 Word 文档。我们使用 Aspose.Slides for C++ API 将 PPTX/PPT 文件转换为 HTML 格式,使用 Aspose.Words for C++ API 将生成的 HTML 转换为 DOCX 格式。要了解有关这些 API 的更多信息,您可以访问他们的官方文档。如有任何疑问,请随时通过我们的免费支持论坛与我们联系 。