• <menu id="w2i4a"></menu>
  • logo Spire.PDF教程

    文檔首頁>>Spire.PDF教程>>PDF管理控件Spire.PDF使用教程:如何添加、更新和刪除超鏈接

    PDF管理控件Spire.PDF使用教程:如何添加、更新和刪除超鏈接


    更多資源查看:Spire.XLS工作表教程 | Spire.Doc系列教程 | Spire.PDF系列教程


    Spire.PDF是一個專業(yè)的PDF組件,能夠獨立地創(chuàng)建、編寫、編輯、操作和閱讀PDF文件,支持 .NET、Java、WPF和Silverlight。Spire.PDF的PDF API擁有豐富的功能,如安全設(shè)置(包括數(shù)字簽名)、PDF文本/附件/圖片提取、PDF文件合并/拆分、元數(shù)據(jù)更新、章節(jié)和段落優(yōu)化、圖形/圖像描繪和插入、表格創(chuàng)建和處理、數(shù)據(jù)導(dǎo)入等等。>>下載Spire.PDF最新試用版

    C# 給 PDF 文檔添加超鏈接

    Spire.PDF允許用戶在PDF文檔中添加超鏈接來鏈接到外部網(wǎng)頁、文檔內(nèi)部的指定頁面或是某些外部文檔。以下示例將介紹如何使用Spire.PDF組件和C#添加這三種超鏈接到PDF文檔。

    鏈接到外部網(wǎng)頁

    //創(chuàng)建PDF文檔并添加一頁
    PdfDocument pdf = new PdfDocument();
    PdfPageBase page = pdf.Pages.Add();
    
    //定義坐標(biāo)變量并賦初值
    float x = 10;
    float y = 50;
    
    //創(chuàng)建字體
    PdfTrueTypeFont font1 = new PdfTrueTypeFont(new Font("Arial Unicode MS", 12f, FontStyle.Regular), true);
    //添加文本到頁面
    string text = "更多詳情請訪問E-iceblue官方網(wǎng)站:  ";
    page.Canvas.DrawString(text, font1, PdfBrushes.Black, new PointF(x, y));
    
    PdfStringFormat format = new PdfStringFormat();
    format.MeasureTrailingSpaces = true;            
    x = x + font1.MeasureString(text, format).Width;
    
    //創(chuàng)建字體
    PdfTrueTypeFont font2 = new PdfTrueTypeFont(new Font("Arial Unicode MS", 12f, FontStyle.Underline), true);
    //創(chuàng)建PdfTextWebLink對象
    PdfTextWebLink webLink = new PdfTextWebLink();
    //設(shè)置超鏈接地址
    webLink.Url = "https://www.e-iceblue.cn/";
    //設(shè)置超鏈接文本
    webLink.Text = "www.e-iceblue.cn";
    //設(shè)置超鏈接字體和字體顏色
    webLink.Font = font2;
    webLink.Brush = PdfBrushes.Blue;
    
    //添加超鏈接到頁面
    webLink.DrawTextWebLink(page.Canvas, new PointF(x, y));
    
    //保存文檔
    pdf.SaveToFile("WebLink.pdf");

    PDF管理控件Spire.PDF使用教程:如何添加、更新和刪除超鏈接

    鏈接到文檔內(nèi)部的指定頁面

    //創(chuàng)建PDF文檔并添加兩頁
    PdfDocument pdf = new PdfDocument();
    PdfPageBase page1 = pdf.Pages.Add();
    PdfPageBase page2 = pdf.Pages.Add();
    
    //創(chuàng)建字體
    PdfTrueTypeFont font = new PdfTrueTypeFont(new Font("Arial Unicode MS", 12f, FontStyle.Regular), true);
    
    //添加文本到頁面
    page1.Canvas.DrawString("第一頁", font, PdfBrushes.Black, new PointF(20, 20));
    page2.Canvas.DrawString("第二頁", font, PdfBrushes.Black, new PointF(20, 20));
    
    string text = "跳轉(zhuǎn)到第二頁";  
    //創(chuàng)建RectangleF對象并添加文本          
    RectangleF rectangle = new RectangleF(20, 80, 70, 20);
    page1.Canvas.DrawString(text, font, PdfBrushes.ForestGreen, rectangle);
    
    //創(chuàng)建PdfDocumentLinkAnnotation對象
    PdfDocumentLinkAnnotation documentLink = new PdfDocumentLinkAnnotation(rectangle, new PdfDestination(page2));
    
    //設(shè)置邊框顏色            
    documentLink.Color = Color.DarkSeaGreen;
    
    //添加超鏈接到第一頁
    page1.AnnotationsWidget.Add(documentLink);
    
    //保存文檔
    pdf.SaveToFile("InternalFileLink.pdf");

    PDF管理控件Spire.PDF使用教程:如何添加、更新和刪除超鏈接

    鏈接到外部文檔

    //創(chuàng)建PDF文檔并添加一頁
    PdfDocument document = new PdfDocument();
    PdfPageBase page = document.Pages.Add();
    
    //創(chuàng)建字體
    PdfTrueTypeFont font = new PdfTrueTypeFont(new Font("Arial Unicode MS", 12f, FontStyle.Regular), true);
    
    string text = "打開1.jpg";
    //創(chuàng)建RectangleF對象并添加文本
    RectangleF rectangle = new RectangleF(20, 40, 80, 20);
    page.Canvas.DrawString(text, font, PdfBrushes.ForestGreen, rectangle);
                
    //創(chuàng)建PdfFileLinkAnnotation對象 
    PdfFileLinkAnnotation fileLink = new PdfFileLinkAnnotation(rectangle, @"1.jpg");
    //設(shè)置超鏈接邊框顏色
    fileLink.Color = Color.DarkSeaGreen;
    
    //添加超鏈接到頁面
    page.AnnotationsWidget.Add(fileLink);
    
    //保存文檔
    document.SaveToFile("ExternalFileLink.pdf");

    PDF管理控件Spire.PDF使用教程:如何添加、更新和刪除超鏈接


    C# 如何更新和刪除 PDF 文檔中的超鏈接

    前面我們介紹了如何使用Spire.PDF組件添加超鏈接到PDF文檔,接下來將詳細(xì)介紹如何使用C#更新和刪除PDF文檔中的超鏈接。

    PDF管理控件Spire.PDF使用教程:如何添加、更新和刪除超鏈接

    //加載PDF示例文檔
     PdfDocument document = new PdfDocument();
     document.LoadFromFile("PDFLink.pdf");
    
     //獲取第一頁
     PdfPageBase page = document.Pages[0];
    
     //獲取所有的PDF 超鏈接集合
     PdfAnnotationCollection widgetCollection = page.AnnotationsWidget;
    
    //更新第一個超鏈接Target link
    PdfUriAnnotationWidget uri = widgetCollection[0] as PdfUriAnnotationWidget;
     uri.Uri = "http://www.e-iceblue.cn/Introduce/Spire-PDF-NET.html";
    
    //刪除第二個超鏈接
      widgetCollection.RemoveAt(1);
    
     //保存文檔
     document.SaveToFile("Result.pdf");

    程序運行后,第一個超鏈接的網(wǎng)址被修改,第二個超鏈接被刪除,但是字體樣式依然存在:

    PDF管理控件Spire.PDF使用教程:如何添加、更新和刪除超鏈接

    如果你有任何問題或意見,可在下方評論區(qū)留言,點擊資源列表查看更多教程資源~


    *想要購買正版授權(quán)的朋友可以咨詢在線客服哦~

    掃描關(guān)注“慧聚IT”微信公眾號,及時獲取更多產(chǎn)品最新動態(tài)及最新資訊

    1562572142.jpg

    Spire系列組件格式轉(zhuǎn)換完整攻略


    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();