首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >使用C#代码在 PowerPoint 文档中添加、修改或删除页脚

使用C#代码在 PowerPoint 文档中添加、修改或删除页脚

原创
作者头像
用户12401097
发布2026-08-20 13:54:39
发布2026-08-20 13:54:39
980
举报

在 PowerPoint 文档中添加、修改和删除页脚,可以帮助整理演示文稿中的相关信息。页脚通常用于显示标题、作者、日期或页码等内容,也可以根据实际需求进行修改或移除,使页面更加简洁。

本文将介绍如何在 C# 中对 PowerPoint 文档中的页脚进行添加、修改和删除操作,并演示相关实现方法。

安装相关组件

首先,将项目所需的 DLL 文件添加为 .NET 项目的引用。相关文件可以从对应的安装包中获取,也可以通过 NuGet 进行安装。

代码语言:C#
复制
PM> Install-Package Spire.Presentation

使用 C# 在 PowerPoint 文档中添加页脚

可以通过设置演示文稿的相关属性,在 PowerPoint 页面底部添加统一的页脚、页码和日期信息。具体步骤如下:

  1. 创建一个 Presentation 对象。
  2. 使用 LoadFromFile() 方法加载 PowerPoint 文档。
  3. 将 FooterVisible 设置为 true,显示页脚并设置页脚文本。
  4. 将 SlideNumberVisible 设置为 true,显示幻灯片编号,然后遍历每张幻灯片,查找页码占位符,并将其修改为 “Slide X” 格式。
  5. 将 DateTimeVisible 设置为 true,显示日期和时间。
  6. 使用 SetDateTime() 方法设置日期格式。
  7. 使用 SaveToFile() 方法保存修改后的文档。

完整示例代码如下:

代码语言:C#
复制
using Spire.Presentation;

namespace SpirePresentationDemo

{
    internal class Program
    {
        static void Main(string[] args)
        {
            // 创建 Presentation 对象
            Presentation presentation = new Presentation();

            // 从文件加载演示文稿
            presentation.LoadFromFile("Sample1.pptx");

            // 设置显示页脚
            presentation.FooterVisible = true;

            // 设置页脚文本为 "Spire.Presentation"
            presentation.SetFooterText("Spire.Presentation");

            // 设置显示幻灯片编号
            presentation.SlideNumberVisible = true;

            // 遍历演示文稿中的每张幻灯片
            foreach (ISlide slide in presentation.Slides)

            {
                foreach (IShape shape in slide.Shapes)
                {
                    if (shape.Placeholder != null)
                    {
                        // 如果是幻灯片编号占位符
                        if (shape.Placeholder.Type.Equals(PlaceholderType.SlideNumber))

                        {
                            TextParagraph textParagraph = (shape as IAutoShape).TextFrame.TextRange.Paragraph;
                            String text = textParagraph.Text;

                            // 将幻灯片编号修改为 "Slide X" 格式
                            textParagraph.Text = "Slide " + text;
                        }
                    }
                }
            }
            // 设置显示日期和时间
            presentation.DateTimeVisible = true;

            // 设置日期和时间格式
            presentation.SetDateTime(DateTime.Now, "MM/dd/yyyy");

            // 将修改后的演示文稿保存到文件
            presentation.SaveToFile("AddFooter.pptx", FileFormat.Pptx2016);

            // 释放 Presentation 对象资源
            presentation.Dispose();
        }
    }
}

使用 C# 修改 PowerPoint 文档中的页脚

修改 PowerPoint 文档中的页脚时,需要逐一检查每张幻灯片中的形状,识别页脚、页码等占位符,然后根据需要调整对应的内容或格式。具体步骤如下:

  1. 创建一个 Presentation 对象。
  2. 使用 LoadFromFile() 方法加载 PowerPoint 文档。
  3. 使用 Slidesindex 属性获取指定幻灯片。
  4. 使用 for 循环遍历幻灯片中的各个形状,判断其是否为页脚、页码等占位符,并根据需要修改相应的内容或格式。
  5. 使用 SaveToFile() 方法保存修改后的文档。

完整示例代码如下:

代码语言:C#
复制
using Spire.Presentation;
namespace SpirePresentationDemo

{
    internal class Program
    {
        static void Main(string[] args)
        {
            // 创建 Presentation 对象
            Presentation presentation = new Presentation();

            // 从文件加载演示文稿
            presentation.LoadFromFile("Sample2.pptx");

            // 获取第一张幻灯片
            ISlide slide = presentation.Slides[0];

            // 遍历幻灯片中的形状
            for (int i = 0; i < slide.Shapes.Count; i++)
            {
                // 检查形状是否为占位符
                if (slide.Shapes[i].Placeholder != null)
                {
                    // 获取占位符类型
                    PlaceholderType type = slide.Shapes[i].Placeholder.Type;

                    // 如果是页脚占位符
                    if (type == PlaceholderType.Footer)
                    {
                        // 将形状转换为 IAutoShape 类型
                        IAutoShape autoShape = (IAutoShape)slide.Shapes[i];

                        // 设置文本内容为 "E-ICEBLUE"
                        autoShape.TextFrame.Text = "E-ICEBLUE";

                        // 修改文本字体
                        ChangeFont1(autoShape.TextFrame.Paragraphs[0]);
                    }
                    // 如果是幻灯片编号占位符
                    if (type == PlaceholderType.SlideNumber)
                    {
                        // 将形状转换为 IAutoShape 类型
                        IAutoShape autoShape = (IAutoShape)slide.Shapes[i];

                        // 修改文本字体
                        ChangeFont1(autoShape.TextFrame.Paragraphs[0]);
                    }
                }
            }
            // 将修改后的演示文稿保存到文件
            presentation.SaveToFile("ModifyFooter.pptx", FileFormat.Pptx2016);

            // 释放 Presentation 对象资源
            presentation.Dispose();
        }
        static void ChangeFont1(TextParagraph paragraph)
        {
            // 遍历段落中的每个文本范围
            foreach (TextRange textRange in paragraph.TextRanges)
            {
                // 设置文本样式为斜体
                textRange.IsItalic = TriState.True;

                // 设置文本字体
                textRange.EastAsianFont = new TextFont("Times New Roman");

                // 设置文本字号为 34
                textRange.FontHeight = 34;

                // 设置文本颜色
                textRange.Fill.FillType = Spire.Presentation.Drawing.FillFormatType.Solid;
                textRange.Fill.SolidColor.Color = System.Drawing.Color.LightSkyBlue;
            }
        }
    }
}

使用 C# 删除 PowerPoint 文档中的页脚

删除 PowerPoint 文档中的页脚时,可以先在幻灯片中查找页脚、页码和日期等占位符,再将不需要的占位符从幻灯片中移除。具体步骤如下:

  1. 创建一个 Presentation 对象。
  2. 使用 LoadFromFile() 方法加载 PowerPoint 文档。
  3. 使用 Slidesindex 属性获取指定幻灯片。
  4. 使用 for 循环遍历幻灯片中的形状,检查其是否为占位符。如果属于页脚、页码或日期占位符,则将其从幻灯片中移除。
  5. 使用 SaveToFile() 方法保存修改后的文档。

完整示例代码如下:

代码语言:C#
复制
using Spire.Presentation;
namespace SpirePresentationDemo

{
    internal class Program
    {
        static void Main(string[] args)
        {
            // 创建一个 Presentation 对象
            Presentation presentation = new Presentation();

            // 从文件加载演示文稿
            presentation.LoadFromFile("Sample2.pptx");

            // 获取第一张幻灯片
            ISlide slide = presentation.Slides[0];

            // 按逆序遍历幻灯片中的形状
            for (int i = slide.Shapes.Count - 1; i >= 0; i--)
            {
                // 检查该形状是否为占位符
                if (slide.Shapes[i].Placeholder != null)
                {
                    // 获取占位符类型
                    PlaceholderType type = slide.Shapes[i].Placeholder.Type;

                    // 如果是页脚、幻灯片编号或日期和时间占位符
                    if (type == PlaceholderType.Footer || type == PlaceholderType.SlideNumber || type == PlaceholderType.DateAndTime)
                    {
                        // 从幻灯片中移除该占位符
                        slide.Shapes.RemoveAt(i);
                    }
                }
            }
            // 将修改后的演示文稿保存到文件
            presentation.SaveToFile("RemoveFooter.pptx", FileFormat.Pptx2016);

            // 释放 Presentation 对象占用的资源
            presentation.Dispose();
        }
    }
}

总结

本文介绍了如何使用 Spire.Presentation for .NET 删除 PowerPoint 演示文稿中的页脚、幻灯片编号以及日期和时间信息。通过加载演示文稿并遍历幻灯片中的形状,可以检查各个形状是否为占位符,并根据占位符类型定位需要删除的内容。最后,将修改后的演示文稿保存为新的 PowerPoint 文件。该方法操作简单,适用于需要批量清理或自定义 PowerPoint 页面信息的场景。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

目录
  • 安装相关组件
  • 使用 C# 在 PowerPoint 文档中添加页脚
  • 使用 C# 修改 PowerPoint 文档中的页脚
  • 使用 C# 删除 PowerPoint 文档中的页脚
  • 总结
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档