1. Home
  2.   Slides
  3.   用于 .NET 的文件格式.幻灯片
FileFormat.Slides for .NET

用于 .NET 的文件格式.幻灯片

 
 

通过 .NET API 简化演示文稿的创建和自定义

使用 FileFormat.Slides 轻松创建和自定义演示文稿,这是一个开源的 .NET API。使用这个轻量级库简化幻灯片的生成和自动化。

FileFormat.Slides for .NET 提供简单、轻松且用户友好的体验,使其成为理想的选择对于那些希望使用开源 API 处理 Microsoft PowerPoint 演示文稿的用户来说,这是一个不错的选择。这个开源 .NET API 经过精心设计,可简化创建和自定义 PowerPoint 演示文稿的过程。借助这个直观的 C​​# 库,您现在只需几行代码即可轻松生成和操作演示文稿。

这种轻量级解决方案的安装过程是无缝的,并提供一系列功能来满足您的所有演示要求。 FileFormat.Slides for .NET 利用 OpenXML SDK,这是 Microsoft 认可的技术。 FileFormat.Slides for .NET 作为一个方便的包装器,简化了其高级功能的使用。

考虑到开发人员的利益,这个开源 .NET 库只需几行代码即可轻松自动创建和编辑 PowerPoint 演示文稿。您可以使用 OpenXML SDK 库增强其功能。由于其用户友好的设计,处理 .NET 的 FileFormat.Slides 非常容易。该库具有智能功能,例如添加工作表、文本、在流中打开现有演示文稿、将格式应用于整个演示文稿或特定文本形状、向演示文稿添加图像等等。

探索我们的 GitHub 存储库以做出贡献、提出改进建议并增强此开源 API: https://github。 com/fileformat-slides/FileFormat.Slides-for-.NET

Previous Next

.NET 的 FileFormat.Slides 入门

安装 FileFormat.Slides for .NET 的推荐方法是使用 NuGet。为了顺利安装,请使用以下命令。

通过 NuGetInstallFileFormat.Slides for .NET

NuGet\Install-Package FileFormat.Slides 
您还可以直接从 GitHub 下载它。

以编程方式创建 PowerPoint 演示文稿

以下代码片段以编程方式创建一个空的 PowerPoint 演示文稿。

通过 .NET API 创建 PowerPoint 演示文稿

 
// Create an object of the Presentation class.
 Presentation presentation = Presentation.Create("presentation.pptx");

//Perform necessary operations.
//...

// Call the Save method to save the PowerPoint file onto the disk.
presentation.Save();

以编程方式将文本插入演示文稿

以下代码片段以编程方式将文本插入到演示文稿中。

通过 .NET API 将文本插入演示文稿

 

// Create a new PowerPoint presentation at the specified file path
Presentation presentation = Presentation.Create("D:\\AsposeSampleResults\\test2.pptx");

// Create a text shape for the title and set its properties
TextShape shape = new TextShape();
shape.Text = "Title: Here is my first title From FF";
shape.TextColor = "980078";
shape.FontFamily = "Baguet Script";

// Create the slide and add the text shape to it
Slide slide = new Slide();
slide.AddTextShapes(shape);

// Append the slide to the presentation
presentation.AppendSlide(slide);

// Save the modified presentation
presentation.Save();


 中文