-
C# 添加、修改、删除PPT中的超链接
本文介绍通过C# 编程如何在PPT幻灯片中添加超链接的方法,添加链接时,可给文本或者图片添加超链接,链接对象可指向网页地址、邮件地址、指定幻灯片等,此外,也可以参考文中编辑、删除幻灯片中已有超链接的方法。
程序使用类库:Free Spire.Presentation for .NET (免费版)
dll获取及引用:
方法1:可通过官网下载包,解压将Bin文件夹下的程序安装到指定路径;完成安装后,将安装路径下Bin文件夹中的Spire.Presentation.dll文件添加引用到程序,并添加using指令。
方法2:可通过Nuget安装导入。
Dll添加引用效果如下图:
C# 代码示例
1. 添加超链接到PPT幻灯片
using Spire.Presentation; using Spire.Presentation.Drawing; using System.Drawing; namespace AddHyperlink { class Program { static void Main(string[] args) { //初始化Presentation实例 Presentation ppt = new Presentation(); //添加一张幻灯片作为第二张幻灯片(创建文档时,已默认生成一页幻灯片) ppt.Slides.Append(); //获取第1张幻灯片,并添加形状 ISlide slide1 = ppt.Slides[0]; IAutoShape shape = slide1.Shapes.AppendShape(ShapeType.Rectangle, new RectangleF(100, 100, 450,200)); shape.Fill.FillType = FillFormatType.Solid; shape.Fill.SolidColor.Color = Color.LightYellow; shape.ShapeStyle.LineColor.Color = Color.White; //声明字符串变量 string s1 = "BIDU"; string s2 = "是全球最大的中文搜索引擎,中国最大的以信息和知识为核心的互联网综合服务公司,全球领先的人工智能平台型公司。"; string s3 = "详见第二页内容介绍"; //获取形状段落(默认有一个空白段落) TextParagraph paragraph = shape.TextFrame.TextRange.Paragraph; paragraph.Alignment = TextAlignmentType.Left; //根据字符串s1创建tr1,并在文字上添加链接,指向网页地址 TextRange tr1 = new TextRange(s1); tr1.ClickAction.Address = "https://www.baidu.com/"; //tr1.ClickAction.Address = "mailto:123654zz@163.com";//指向邮件地址 //根据字s2创建tr2 TextRange tr2 = new TextRange(s2); //根据字符串s3创建tr3,并在文字上添加链接,指向第二张幻灯片 TextRange tr3 = new TextRange(s3); ClickHyperlink link = new ClickHyperlink(ppt.Slides[1]); tr3.ClickAction = link; //将TextRange添加到段落 paragraph.TextRanges.Append(tr1); paragraph.TextRanges.Append(tr2); paragraph.TextRanges.Append(tr3); //设置段落的字体样式 foreach (TextRange tr in paragraph.TextRanges) { tr.LatinFont = new TextFont("宋体 (Body)"); tr.FontHeight = 20f; tr.IsBold = TriState.True; tr.Fill.FillType = FillFormatType.Solid; tr.Fill.SolidColor.Color = Color.Black; } //获取第2张幻灯片,添加形状,并将图片添加到形状,设置链接,指向网页地址 ISlide slide2 = ppt.Slides[1]; RectangleF rect = new RectangleF(250, 175, 195, 130); IEmbedImage image = slide2.Shapes.AppendEmbedImage(ShapeType.Rectangle, @"tp.png", rect); ClickHyperlink hyperlink = new ClickHyperlink("https://www.baidu.com/"); image.Click = hyperlink; //保存文档 ppt.SaveToFile("AddHyperlink.pptx", FileFormat.Pptx2010); System.Diagnostics.Process.Start("AddHyperlink.pptx"); } } }
可在幻灯片放映中查看超链接添加效果。
文本超链接添加效果:
图片超链接添加效果:
2. 编辑、删除PPT幻灯片中的超链接
using Spire.Presentation; namespace ModifyHyperlink { class Program { static void Main(string[] args) { //初始化Presentation实例 Presentation ppt = new Presentation(); //加载现有的文档 ppt.LoadFromFile("AddHyperlink.pptx"); //获取第一张幻灯片 ISlide slide = ppt.Slides[0]; //遍历shape foreach (IShape shape in slide.Shapes) { //判断是否为autoshape if (shape is IAutoShape) { //将shape转换为autoshape IAutoShape autoShape = shape as IAutoShape; //遍历autoshape中的paragraph foreach (TextParagraph tp in autoShape.TextFrame.Paragraphs) { //判断paragraph下是否含有textrange if (tp.TextRanges != null && tp.TextRanges.Count > 0) { //遍历textrange for (int tpcount = 0; tpcount < tp.TextRanges.Count; tpcount++) { //判断是否含有文本且含有ClickAction和链接 if (tp.TextRanges[tpcount].ClickAction != null && !string.IsNullOrWhiteSpace(tp.TextRanges[tpcount].ClickAction.Address) && !string.IsNullOrWhiteSpace(tp.TextRanges[tpcount].Text)) { //判断是否含有http链接或https链接 if (tp.TextRanges[tpcount].ClickAction.Address.ToLower().Contains("http") || tp.TextRanges[tpcount].ClickAction.Address.ToLower().Contains("https")) { //为链接重新赋值 tp.TextRanges[tpcount].ClickAction.Address = "https://baike.baidu.com/"; //重新设置超链接文本 tp.TextRanges[tpcount].Text = "百度百科"; //删除超链接 //tp.TextRanges[tpcount].ClickAction = null; } } } } } } } //保存文档 ppt.SaveToFile("ModifyHyperlink.pptx", FileFormat.Pptx2010); System.Diagnostics.Process.Start("ModifyHyperlink.pptx"); } } }
超链接修改结果:
超链接删除效果:
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式