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

Aspose.Words 是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。此外,

Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。

在某些情况下,您可能需要将 PowerPoint 演示文稿转换为 Word 文档。为了自动化这个过程或批量转换,本文介绍了如何使用 C# 将 PowerPoint PPTX/PPT 转换为 Word DOCX。

Aspose.Words 最新下载(qun:761297826)icon-default.png?t=M85Bhttps://www.evget.com/product/564

用于 PowerPoint 到 Word 转换的 API

为了将 PowerPoint 演示文稿转换为 Word 文档,我们将结合使用Aspose.Slides for .NET和Aspose.Words for .NET。前者是一个演示文稿操作 API,可让您创建或修改 PowerPoint 演示文稿。而后者是用于生成或处理 Word 文档的文字处理 API。您可以下载API 或使用 NuGet 安装它们。此外,您还可以获得 Aspose.Total for .NET 的完整 Aspose API 包。

PM> Install-Package Aspose.Slides.NET
PM> Install-Package Aspose.Words

在 C# 中将 PowerPoint PPTX 或 PPT 转换为 DOCX

以下是使用 C# 将 PowerPoint 演示文稿转换为 Word 文档的步骤。

  • 首先,将 Aspose.Words for .NET 和 Aspose.Slides for .NET 的引用添加到您的项目中。
  • 之后,使用Aspose.Slides.Presentation类加载 PowerPoint 演示文稿。
  • 然后,将演示文稿保存到MemoryStream对象中。
  • 创建类的对象并使用MemoryStream对象对其进行初始化。
  • 最后,使用Aspose.Words.Aspose.Words.DocumentDocument.Save(string, Aspose.Words.SaveFormat.Docx)方法保存文档。

以下代码示例展示了如何使用 C# 将 PPTX 转换为 DOCX。

// Load the PowerPoint presentation
using(Aspose.Slides.Presentation presentation = new Aspose.Slides.Presentation("pres.pptx"))
{
using (var stream = new MemoryStream())
{
// Save presentation to memory stream
presentation.Save(stream, SaveFormat.Html);
stream.Flush();
stream.Seek(0, SeekOrigin.Begin);

// Load the content of the presentation to a Word document
var doc = new Aspose.Words.Document(stream);

// Save the Word document
doc.Save("pres.docx", Aspose.Words.SaveFormat.Docx);
}
}

结论

在本文中,您学习了如何使用 C# 将 PowerPoint PPT 或 PPTX 转换为 Word DOCX。您可以简单地安装 API 并将提供的代码集成到您的 .NET 应用程序中。此外,您可以查阅下面列出的文档来探索 API 的其他功能。

你可能感兴趣的:(Aspose.Words,for,.NET入门教程,powerpoint,word,c#,aspose.words,java)