【教程】Spire.PDF教程:如何添加、刪除PDF頁面以及自定義文檔屬性

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

                                                  【下載Spire.PDF最新試用版安全

Spire.PDF是一個專業的PDF組件,可以獨立地建立、編寫、編輯、操做和閱讀PDF文件,支持 .NET、Java、WPF和Silverlight。Spire.PDF的PDF API擁有豐富的功能,如安全設置(包括數字簽名)、PDF文本/附件/圖片提取、PDF文件合併/拆分、元數據更新、章節和段落優化、圖形/圖像描繪和插入、表格建立和處理、數據導入等等。bash

C# 添加或刪除 PDF 頁面,調整頁面順序

操做PDF文檔時,咱們一般會須要添加或刪除一些PDF頁面。接下來將詳細描述如何使用Spire.PDF添加或刪除PDF頁面,以及如何調整PDF裏的頁面順序。優化

▲添加新頁面到已有的PDF文檔spa

Spire.PDF 提供了兩個方法來添加新頁面,Pages.Add()方法是將頁面添加至文檔最後一頁,Pages.Insert() 方法支持將新頁面添加到PDF文檔的首頁,中間,或者末尾頁面。code

PdfDocument doc = new PdfDocument();
 doc.LoadFromFile("sample.pdf");

 //將新頁面添加到文檔末尾
 doc.Pages.Add();

 doc.SaveToFile("result.pdf",FileFormat.PDF);
 
 PdfDocument doc2 = new PdfDocument();
 doc2.LoadFromFile("sample.pdf");

 //將新頁面添加到第二頁
 doc2.Pages.Insert(1);

 doc2.SaveToFile ("result2.pdf",FileFormat.PDF);複製代碼

添加新頁面到最後一頁效果圖:orm

Working-with-PDF-pages-1.png

添加新頁面到第二頁效果圖:cdn

Working-with-PDF-pages-2.png

▲刪除PDF中的頁面htm

咱們能夠使用Spire.PDF 提供的Pages.RemoveAt()方法刪除PDF中咱們想要刪除的指定頁面。對象

PdfDocument doc = new PdfDocument();
doc.LoadFromFile("result.pdf");

//刪除最後一頁
doc.Pages.RemoveAt(2);

doc.SaveToFile("刪除末頁.pdf",FileFormat.PDF);複製代碼

Working-with-PDF-pages-3.png

▲調整PDF文檔中的頁面順序

Spire.PDF 提供Rearrange(int[] orderArray) 方法,讓咱們能夠從新排列調整PDF文檔中的頁面順序。

PdfDocument doc = new PdfDocument();
doc.LoadFromFile("result2.pdf");

//將空白頁調到第一頁
doc.Pages.ReArrange(new int[] { 1, 0, 2 });

doc.SaveToFile("頁面順序調整.pdf",FileFormat.PDF);複製代碼

Working-with-PDF-pages-4.png

C# 添加、獲取和刪除PDF自定義文檔屬性

在PDF文檔中,自定義文檔屬性能夠用來存儲特定的元數據類型,例如版本號或公司名稱等。咱們能夠給一個PDF文檔添加自定義文檔屬性,同時也能夠查看和刪除PDF文檔中已有的自定義屬性。下面將介紹如何使用Spire.PDF組件在PDF文檔中添加、獲取和刪除自定義文檔屬性。

▲添加自定義文檔屬性

//實例化一個PdfDocument對象
PdfDocument doc = new PdfDocument();
//載入PDF文檔
doc.LoadFromFile("Input.pdf");

//添加自定義文檔屬性
doc.DocumentInformation.SetCustomerDefined("版本號", "6.0.5");            
doc.DocumentInformation.SetCustomerDefined("公司名稱", "E-iceblue"); 
doc.DocumentInformation.SetCustomerDefined("產品", "Spire.Doc for .NET");           

//保存文檔
doc.SaveToFile("添加自定義屬性.pdf");複製代碼

add-get-and-delete-custom-properties-of-pdf-document.png

▲獲取自定義文檔屬性

//實例化一個PdfDocument對象
PdfDocument doc = new PdfDocument();
//載入PDF文檔
doc.LoadFromFile("添加自定義屬性.pdf");

//獲取指定自定義屬性
string version = doc.DocumentInformation.GetCustomerDefined("版本號");
string company = doc.DocumentInformation.GetCustomerDefined("公司名稱");
string product = doc.DocumentInformation.GetCustomerDefined("產品");

//獲取全部自定義文檔屬性
//DictionaryallCustomProperties = doc.DocumentInformation.GetAllCustomerDefined();            

Console.WriteLine("{0}\n{1}\n{2}\n", "版本號:" + version, "公司名稱:" + company, "產品:" + product);複製代碼

add-get-and-delete-custom-properties-of-pdf-document-2.png

▲刪除自定義文檔屬性

//實例化一個PdfDocument對象
PdfDocument doc = new PdfDocument();
//載入PDF文檔
doc.LoadFromFile("添加自定義屬性.pdf");            

//刪除指定自定義屬性
doc.DocumentInformation.RemoveCustomerDefined("版本號");

//保存文檔            
doc.SaveToFile("刪除自定義屬性.pdf");複製代碼

add-get-and-delete-custom-properties-of-pdf-document-3.png

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

相關文章
相關標籤/搜索