彩票走势图

PPT处理控件Aspose.Slides功能演示:使用 C++ 将 PowerPoint 演示文稿转换为 Word 文档

翻译|使用教程|编辑:李显亮|2021-09-13 10:36:51.790|阅读 168 次

概述:在本文中,将学习如何使用 C++ 以编程方式将 PowerPoint PPTX/PPT 文件转换为 Word 格式。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

在某些情况下,您可能有一个 PowerPoint 演示文稿并希望创建一个详细描述其内容的文档。为此,可以将PPTX / PPT文件转换为 Word 格式并修改 Word 文件以输入每张幻灯片的详细信息。在本文中,将学习如何使用 C++ 以编程方式将 PowerPoint PPTX/PPT 文件转换为 Word 格式。

  • 使用 C++ 将 PowerPoint PPTX/PPT 文件转换为 DOCX 格式

为了将 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 格式。

下载最新版Aspose.Slides

PPT处理控件Aspose.Slides功能演示:使用C ++在PowerPoint演示文稿中使用笔记


使用 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 格式。

/ File paths
const String sourceFilePath = u"SourceDirectory\\Slides\\SamplePresentation.pptx";
const String outputFilePath = u"OutputDirectory\\SlidesToWord_out.docx";
// Load the presentation file
auto presentation = System::MakeObject(sourceFilePath);
// Create an instance of the MemoryStream class
auto stream = System::MakeObject();
// Save the presentation to the stream
presentation->Save(stream, SaveFormat::Html);
stream->Flush();
stream->Seek(0, SeekOrigin::Begin);
// Create an instance of the Document class using the stream
auto doc = System::MakeObject(stream);
// Save the Word document
doc->Save(outputFilePath, Aspose::Words::SaveFormat::Docx);

如果你想试用Aspose的全部完整功能,可联系在线客服获取30天临时授权体验。


还想要更多吗?您可以点击阅读【Aspose最新资源在线文库】查找需要的教程资源。如果您有任何疑问或需求,请随时加入Aspose技术交流群(761297826),我们很高兴为您提供查询和咨询

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP