• <menu id="w2i4a"></menu>
  • logo Aspose.PDF for .NET開(kāi)發(fā)者使用教程

    文檔首頁(yè)>>Aspose.PDF for .NET開(kāi)發(fā)者使用教程>>PDF管理控件Aspose.PDF for .Net使用教程(二十九):添加和刪除PDF中的書(shū)簽

    PDF管理控件Aspose.PDF for .Net使用教程(二十九):添加和刪除PDF中的書(shū)簽


    Aspose.PDF for .NET是一種高PDF處理和解析API,用于在跨平臺(tái)應(yīng)用程序中執(zhí)行文檔管理和操作任務(wù)。API可以輕松用于生成、修改、轉(zhuǎn)換、渲染、保護(hù)和打印PDF文檔,而無(wú)需使用Adobe Acrobat。此外,API還提供PDF壓縮選項(xiàng),表格創(chuàng)建和操作,圖形和圖像功能,廣泛的超鏈接功能,印章和水印任務(wù),擴(kuò)展的安全控制和自定義字體處理。

    在接下來(lái)的系列教程中,將為開(kāi)發(fā)者帶來(lái)Aspose.PDF for .NET的一系列使用教程,例如進(jìn)行文檔間的轉(zhuǎn)換,如何標(biāo)記PDF文件,如何使用表單和圖表等等。本文將介紹添加和刪除PDF中的書(shū)簽。

    >>Aspose.PDF for .NET更新至最新版v20.2,歡迎下載體驗(yàn)。


    將書(shū)簽添加到PDF文檔

    書(shū)簽保存在Document對(duì)象的OutlineItemCollection集合中,而對(duì)象本身也在OutlineCollection集合中。要將書(shū)簽添加到PDF:

    1. 使用Document對(duì)象打開(kāi)PDF文檔。
    2. 創(chuàng)建一個(gè)書(shū)簽并定義其屬性。
    3. 將OutlineItemCollection集合添加到Outlines集合中。

    以下代碼段顯示了如何在PDF文檔中添加書(shū)簽。

    // The path to the documents directory.
    string dataDir = RunExamples.GetDataDir_AsposePdf_Bookmarks();
    
    // Open document
    Document pdfDocument = new Document(dataDir + "AddBookmark.pdf");
    
    // Create a bookmark object
    OutlineItemCollection pdfOutline = new OutlineItemCollection(pdfDocument.Outlines);
    pdfOutline.Title = "Test Outline";
    pdfOutline.Italic = true;
    pdfOutline.Bold = true;
    // Set the destination page number
    pdfOutline.Action = new GoToAction(pdfDocument.Pages[1]);
    // Add bookmark in the document's outline collection.
    pdfDocument.Outlines.Add(pdfOutline);
    
    dataDir = dataDir + "AddBookmark_out.pdf";
    // Save output
    pdfDocument.Save(dataDir);

    將子書(shū)簽添加到PDF文檔

    書(shū)簽可以嵌套,表示與父書(shū)簽和子書(shū)簽的層次關(guān)系。本文介紹了如何將子書(shū)簽(即第二級(jí)書(shū)簽)添加到PDF。要將子書(shū)簽添加到PDF文件,請(qǐng)首先添加父書(shū)簽:

    1. 打開(kāi)一個(gè)文檔。
    2. 將書(shū)簽添加到OutlineItemCollection,以定義其屬性。
    3. 將添加OutlineItemCollection到Document對(duì)象的OutlineCollection集合。

    就像上面解釋的父書(shū)簽一樣,創(chuàng)建了子書(shū)簽,但是將其添加到了父書(shū)簽的Outlines集合中。

    以下代碼段顯示了如何將子書(shū)簽添加到PDF文檔。

    // The path to the documents directory.
    string dataDir = RunExamples.GetDataDir_AsposePdf_Bookmarks();
    
    // Open document
    Document pdfDocument = new Document(dataDir + "AddChildBookmark.pdf");
    
    // Create a parent bookmark object
    OutlineItemCollection pdfOutline = new OutlineItemCollection(pdfDocument.Outlines);
    pdfOutline.Title = "Parent Outline";
    pdfOutline.Italic = true;
    pdfOutline.Bold = true;      
              
    // Create a child bookmark object
    OutlineItemCollection pdfChildOutline = new OutlineItemCollection(pdfDocument.Outlines);
    pdfChildOutline.Title = "Child Outline";
    pdfChildOutline.Italic = true;
    pdfChildOutline.Bold = true;
         
    // Add child bookmark in parent bookmark's collection
    pdfOutline.Add(pdfChildOutline);
    // Add parent bookmark in the document's outline collection.
    pdfDocument.Outlines.Add(pdfOutline);
                
    dataDir = dataDir + "AddChildBookmark_out.pdf";
    // Save output
    pdfDocument.Save(dataDir);

    刪除PDF文檔中的所有書(shū)簽

    PDF中的所有書(shū)簽都保存在OutlineCollection集合中。本文介紹了如何從PDF文件中刪除所有書(shū)簽。要從PDF文件中刪除所有書(shū)簽:

    1. 調(diào)用OutlineCollection集合的Delete方法。
    2. 使用Document對(duì)象的Save方法保存修改后的文件。

    以下代碼段顯示了如何從PDF文檔中刪除所有書(shū)簽。

    // The path to the documents directory.
    string dataDir = RunExamples.GetDataDir_AsposePdf_Bookmarks();
    
    // Open document
    Document pdfDocument = new Document(dataDir + "DeleteAllBookmarks.pdf");
    
    // Delete all bookmarks
    pdfDocument.Outlines.Delete();
    
    dataDir = dataDir + "DeleteAllBookmarks_out.pdf";
    // Save updated file
    pdfDocument.Save(dataDir);

    從PDF文檔中刪除特定的書(shū)簽

    從PDF文檔刪除所有附件顯示了如何從PDF文件刪除所有附件。也可以僅刪除特定的附件。要從PDF文件中刪除特定的書(shū)簽:

    1. 將書(shū)簽的標(biāo)題作為參數(shù)傳遞給OutlineCollection集合的Delete方法。
    2. 使用Document對(duì)象Save方法保存更新的文件。

    該Document班提供的OutlineCollection集合。該Delete}方法刪除的標(biāo)題傳遞給方法的任何書(shū)簽。

    以下代碼段顯示了如何從PDF文檔中刪除特定的書(shū)簽。

    // The path to the documents directory.
    string dataDir = RunExamples.GetDataDir_AsposePdf_Bookmarks();
    
    // Open document
    Document pdfDocument = new Document(dataDir + "DeleteParticularBookmark.pdf");
    
    // Delete particular outline by Title
    pdfDocument.Outlines.Delete("Child Outline");
    
    dataDir = dataDir + "DeleteParticularBookmark_out.pdf";
    // Save updated file
    pdfDocument.Save(dataDir);
    還想要更多嗎?您可以點(diǎn)擊閱讀【2019 · Aspose最新資源整合】,查找需要的教程資源。如果您有任何疑問(wèn)或需求,請(qǐng)隨時(shí)加入Aspose技術(shù)交流群(642018183),我們很高興為您提供查詢和咨詢
    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    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); })();