Aspose.PDF for .NET使用教程(二):添加和刪??除書簽
Aspose.PDF for .NET是一種高PDF處理和解析API,用于在跨平臺應(yīng)用程序中執(zhí)行文檔管理和操作任務(wù)。API可以輕松用于生成、修改、轉(zhuǎn)換、渲染、保護(hù)和打印PDF文檔,而無需使用Adobe Acrobat。此外,API還提供PDF壓縮選項(xiàng),表格創(chuàng)建和操作,圖形和圖像功能,廣泛的超鏈接功能,印章和水印任務(wù),擴(kuò)展的安全控制和自定義字體處理。
【下載體驗(yàn)Aspose.PDF for .NET最新版】
在接下來的系列教程中,將為開發(fā)者帶來Aspose.PDF for .NET的一系列使用教程,例如進(jìn)行文檔間的轉(zhuǎn)換,如何標(biāo)記PDF文件,如何使用表單和圖表等等。
第二章:使用書簽
▲第一節(jié):添加和刪除書簽
將書簽添加到PDF文檔中
書簽保存在文檔對象的OutlineItemCollection集合中,它本身保存在OutlineCollection集合中。
要將書簽添加到PDF,只需三步:
- 使用Document對象打開PDF文檔。
- 創(chuàng)建書簽并定義其屬性。
- 將OutlineItemCollection集合添加到Outlines集合中。
以下代碼段顯示如何在PDF文檔中添加書簽:
//文檔目錄的路徑。 string dataDir = RunExamples.GetDataDir_AsposePdf_Bookmarks(); //打開文檔 Document pdfDocument = new Document(dataDir + "AddBookmark.pdf"); //創(chuàng)建書簽對象 OutlineItemCollection pdfOutline = new OutlineItemCollection(pdfDocument.Outlines); pdfOutline.Title = "Test Outline"; pdfOutline.Italic = true; pdfOutline.Bold = true; //設(shè)置目標(biāo)頁碼 pdfOutline.Action = new GoToAction(pdfDocument.Pages[1]); //在文檔的大綱集合中添加書簽。 pdfDocument.Outlines.Add(pdfOutline); dataDir = dataDir + "AddBookmark_out.pdf"; //保存輸出 pdfDocument.Save(dataDir);
向PDF文檔添加子書簽
書簽可以嵌套,表示與父書簽和子書簽的層次關(guān)系。要將子書簽添加到PDF文件中,首先要添加父書簽:
- 打開一份文件。
- 添加書簽OutlineItemCollection,定義其屬性。
- 添加OutlineItemCollection到Document對象的OutlineCollection集合。
子書簽的創(chuàng)建方式與上面說明的父書簽一樣,但會(huì)添加到父書簽的Outlines集合中。
以下代碼段顯示如何從PDF文檔中獲取所有附件:
//文檔目錄的路徑。 string dataDir = RunExamples.GetDataDir_AsposePdf_Bookmarks(); //打開文檔 Document pdfDocument = new Document(dataDir + "AddChildBookmark.pdf"); //創(chuàng)建父書簽對象 OutlineItemCollection pdfOutline = new OutlineItemCollection(pdfDocument.Outlines); pdfOutline.Title = "Parent Outline"; pdfOutline.Italic = true; pdfOutline.Bold = true; //創(chuàng)建子書簽對象 OutlineItemCollection pdfChildOutline = new OutlineItemCollection(pdfDocument.Outlines); pdfChildOutline.Title = "Child Outline"; pdfChildOutline.Italic = true; pdfChildOutline.Bold = true; //在父書簽的集合中添加子書簽 pdfOutline.Add(pdfChildOutline); //在文檔的大綱集合中添加父書簽 pdfDocument.Outlines.Add(pdfOutline); dataDir = dataDir + "AddChildBookmark_out.pdf"; //保存輸出 pdfDocument.Save(dataDir);
從PDF文檔中刪除所有書簽
PDF中的所有書簽都保存在OutlineCollection集合中。要從PDF文件中刪除所有書簽,需要下列步驟:
- 調(diào)用OutlineCollection集合的Delete方法。
- 使用Document對象的Save方法保存修改后的文件。
//文檔目錄的路徑 string dataDir = RunExamples.GetDataDir_AsposePdf_Bookmarks(); //打開文檔 Document pdfDocument = new Document(dataDir + "DeleteAllBookmarks.pdf"); //刪除所有書簽 pdfDocument.Outlines.Delete(); dataDir = dataDir + "DeleteAllBookmarks_out.pdf"; //保存更新的文件 pdfDocument.Save(dataDir);
從PDF文檔中刪除特定書簽
要從PDF文件中刪除特定書簽,需要下列步驟:
- 將書簽的標(biāo)題作為參數(shù)傳遞給OutlineCollection集合的Delete方法。
- 然后使用Documentobject Save方法保存更新的文件。
//文檔目錄的路徑 string dataDir = RunExamples.GetDataDir_AsposePdf_Bookmarks(); //打開文檔 Document pdfDocument = new Document(dataDir + "DeleteParticularBookmark.pdf"); //按標(biāo)題刪除特定大綱 pdfDocument.Outlines.Delete("Child Outline"); dataDir = dataDir + "DeleteParticularBookmark_out.pdf"; //保存更新的文件 pdfDocument.Save(dataDir);
-- 未完待續(xù) --
*想要購買Aspose.PDF for .NET正版授權(quán)的朋友可以聯(lián)系在線客服了解詳情哦~
ASPOSE技術(shù)交流QQ群現(xiàn)已開通,各類資源及時(shí)分享,歡迎交流討論!(掃描下方二維碼加入群聊)