PPT处理控件Aspose.Slides教程:使用 C# 编程将 PPTX 转换为 XML

PowerPoint演示文稿用途广泛。为了将这些演示文稿集成到自动化系统中进行分析和处理,您需要将这些 PPTX/PPT 文件转换为机器可读的格式。然而,XML是一种结构更清晰、更易于人类阅读的格式。在本指南中,我们将探讨如何开发一个以编程方式将 PowerPoint 转换为 XML 的工具。++Aspose.Slides++ **++for .NET++**允许您使用 C# 中的几个类方法将 PPTX 转换为 XML。

Aspose.Slides试用版免费下载

PowerPoint SDK 安装

安装此 SDK 的方法之一是**++下载++** ++文件++

另一种方法是打开程序包管理器控制台并运行以下命令:

复制代码
Install-Package Aspose.Slides.NET

或者,通过 NuGet 包管理器安装。

如何在 C# 中将 PPTX 转换为 XML - 代码片段

本节将介绍如何使用**++Aspose.Slides for .NET++**开发 PPT 到 XML 转换器。

步骤:

  • 通过实例化Presentation类的实例来创建新的演示文稿。
  • 访问第一张幻灯片。
  • 调用AddAutoShape方法以默认格式创建新的自动形状。
  • 添加标题并设置字体大小。
  • 通过调用Save方法将演示文稿保存为 XML 文件。

要在 C# 中将 PPTX 转换为 XML,请遵循下面给出的源代码:

复制代码
using Aspose.Slides;
using Aspose.Slides.Export;

namespace AsposeSlides
{
    class Graphics
    {
        static void Main(string[] args)
        {
            string outFilePath = "document.xml";
            string licensePath = "License.lic";
            // Apply license
            License lic = new License();
            lic.SetLicense(licensePath);
            // Create a new presentation by instantiating an instance of the Presentation class.
            using (Presentation pres = new Presentation())
            {
                // Access the first slide.
                ISlide slide = pres.Slides[0];
                // Call the AddAutoShape method to create a new auto shape with default formatting. 
                IAutoShape titleShape = slide.Shapes.AddAutoShape(ShapeType.Rectangle, 50, 50, 600, 50);
                // Add a title.
                titleShape.AddTextFrame("Hello Aspose.Slides!");
                // Set the font size.
                titleShape.TextFrame.Paragraphs[0].Portions[0].PortionFormat.FontHeight = 24;
                // Add a content textbox and insert a title. 
                IAutoShape contentShape = slide.Shapes.AddAutoShape(ShapeType.Rectangle, 50, 120, 600, 300);
                contentShape.AddTextFrame("This is a sample slide with text added programmatically.");
                contentShape.TextFrame.Paragraphs[0].Portions[0].PortionFormat.FontHeight = 16;
                // Save presentation as XML file by calling the Save method. 
                pres.Save(outFilePath, SaveFormat.Xml);
            }
        }
    }
}

上述代码示例生成以下输出:

结论

借助**Aspose.Silides**我们实现了如何在 C# 中将 PPTX 转换为 XML。它可以轻松地将您的商业或教育演示文稿与基于 AI 的系统集成和处理。此外,通过将 PowerPoint 转换为 XML,您的数据将变得更加灵活且可重复使用。

相关推荐
小码编匠4 小时前
手把手教会设计 WinForm 高DPI兼容程序,告别字体模糊与控件乱飞(.NET 4.6.1/.NET 6.0)
后端·c#·.net
钩鸿踏月5 小时前
复盘一个诡异的Bug之FileNotFoundException
c#·bug·.net
INSO6 小时前
查漏补缺之Autofac
c#
INSO6 小时前
查漏补缺之Autofac生命周期
c#
小乖兽技术6 小时前
C#与C++交互开发系列(三十):C#非托管内存分配大比拼,哪种方式才是真正的性能王者?
c++·c#·交互
MiaoChuAI7 小时前
AI助力PPT创作:秒出PPT与豆包AI谁更高效?
人工智能·powerpoint
用户7227868123448 小时前
使用c#强大的SourceGenerator现对象的深克隆
c#
好望角雾眠8 小时前
第二阶段WinForm-11:自定义控件
笔记·c#·#笔记·#自定义控件
wuk9988 小时前
C#开发OPC UA客户端
开发语言·c#