用於 .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。
.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();