C# 給現有PDF文件新增頁首、頁尾
阿新 • • 發佈:2018-12-09
概述
頁首頁尾是一篇完整、精緻的文件的重要組成部分。在頁首頁尾處,可以呈現的內容很多,如公司名稱、頁碼、工作表名、日期、圖片,如LOGO、標記等。在之前的文章中介紹了如何通過新建一頁空白PDF頁來新增頁首到該頁面,包括文字頁面、圖片頁首。但是在實際應用中,該方法會有一定侷限性,通過測試,下面將介紹C#給現有的PDF文件新增頁首頁尾的方法。該方法中,豐富了我們對於新增頁首頁尾的內容形式,包括新增圖片、文字、超連結、頁碼等。
使用工具
注:下載該類庫後,注意在程式中新增引用Spire.Pdf.dll(dll檔案可在安裝路徑下的Bin資料夾中獲取)
C# 程式碼步驟(供參考)
步驟 1 :新增using指令
using Spire.Pdf; using Spire.Pdf.AutomaticFields; using Spire.Pdf.Graphics; using System; using System.Drawing;
步驟 2 :載入測試文件
//例項化PdfDocument類,載入測試文件 PdfDocument existingPdf = new PdfDocument(); existingPdf.LoadFromFile("Test.pdf");
步驟 3 :新增頁首頁尾
//呼叫DrawHeader()方法在現有文件新增頁首 DrawHeader(existingPdf);//呼叫DrawFooter()方法在現有文件新增頁尾 DrawFooter(existingPdf);
注:這裡需要自定義方法來分別新增頁首、頁尾到PDF文件。
自定義方法新增頁首:
//在頁面上方空白部位繪製頁首 static void DrawHeader(PdfDocument doc) { //獲取頁面大小 SizeF pageSize = doc.Pages[0].Size; //宣告x,y兩個float型變數 float x = 90; float y = 20; for (int i = 0; i < doc.Pages.Count; i++) {//在每一頁的指定位置繪製圖片 PdfImage headerImage = PdfImage.FromFile("logo.png"); float width = headerImage.Width / 7; float height = headerImage.Height / 7; doc.Pages[i].Canvas.DrawImage(headerImage, x, y, width, height); //在每一頁的指定位置繪製橫線 PdfPen pen = new PdfPen(PdfBrushes.Gray, 0.5f); doc.Pages[i].Canvas.DrawLine(pen, x, y + height + 2, pageSize.Width - x, y + height + 2); } }
自定義方法新增頁尾:
//在頁面下方空白部位繪製頁尾 static void DrawFooter(PdfDocument doc) { //獲取頁面大小 SizeF pageSize = doc.Pages[0].Size; //宣告x,y兩個float型變數 float x = 90; float y = pageSize.Height - 72; for (int i = 0; i < doc.Pages.Count; i++) { //在每一頁的指定位置繪製橫線 PdfPen pen = new PdfPen(PdfBrushes.Gray, 0.5f); doc.Pages[i].Canvas.DrawLine(pen, x, y, pageSize.Width - x, y); //在每一頁的指定位置繪製文字 y = y + 5; PdfTrueTypeFont font = new PdfTrueTypeFont(new Font("黑體", 10f, FontStyle.Bold), true); PdfStringFormat format = new PdfStringFormat(PdfTextAlignment.Left); String footerText = " Website\n https://g20.org/"; doc.Pages[i].Canvas.DrawString(footerText, font, PdfBrushes.Black, x, y, format); //在每一頁的指定位置當前頁碼和總頁碼 PdfPageNumberField number = new PdfPageNumberField(); PdfPageCountField count = new PdfPageCountField(); PdfCompositeField compositeField = new PdfCompositeField(font, PdfBrushes.Black, "{0}/{1}", number, count); compositeField.StringFormat = new PdfStringFormat(PdfTextAlignment.Right, PdfVerticalAlignment.Top); SizeF size = font.MeasureString(compositeField.Text); compositeField.Bounds = new RectangleF(pageSize.Width - x - size.Width, y, size.Width, size.Height); compositeField.Draw(doc.Pages[i].Canvas); } }
步驟 4 :儲存文件
existingPdf.SaveToFile("output.pdf"); System.Diagnostics.Process.Start("output.pdf");
程式碼完成後,除錯執行程式,生成文件。開啟文件後,效果如下:
全部程式碼:
using Spire.Pdf; using Spire.Pdf.AutomaticFields; using Spire.Pdf.Graphics; using System; using System.Drawing; namespace PdfHeader { class Program { static void Main(string[] args) { //載入一個測試文件 PdfDocument existingPdf = new PdfDocument(); existingPdf.LoadFromFile("Test.pdf"); //呼叫DrawHeader()方法在現有文件新增頁首 DrawHeader(existingPdf); //呼叫DrawFooter()方法在現有文件新增頁尾 DrawFooter(existingPdf); //儲存並開啟文件 existingPdf.SaveToFile("output.pdf"); System.Diagnostics.Process.Start("output.pdf"); } //在頁面上方空白部位繪製頁首 static void DrawHeader(PdfDocument doc) { //獲取頁面大小 SizeF pageSize = doc.Pages[0].Size; //宣告x,y兩個float型變數 float x = 90; float y = 20; for (int i = 0; i < doc.Pages.Count; i++) { //在每一頁的指定位置繪製圖片 PdfImage headerImage = PdfImage.FromFile("logo.png"); float width = headerImage.Width / 7; float height = headerImage.Height / 7; doc.Pages[i].Canvas.DrawImage(headerImage, x, y, width, height); //在每一頁的指定位置繪製橫線 PdfPen pen = new PdfPen(PdfBrushes.Gray, 0.5f); doc.Pages[i].Canvas.DrawLine(pen, x, y + height + 2, pageSize.Width - x, y + height + 2); } } //在頁面下方空白部位繪製頁尾 static void DrawFooter(PdfDocument doc) { //獲取頁面大小 SizeF pageSize = doc.Pages[0].Size; //宣告x,y兩個float型變數 float x = 90; float y = pageSize.Height - 72; for (int i = 0; i < doc.Pages.Count; i++) { //在每一頁的指定位置繪製橫線 PdfPen pen = new PdfPen(PdfBrushes.Gray, 0.5f); doc.Pages[i].Canvas.DrawLine(pen, x, y, pageSize.Width - x, y); //在每一頁的指定位置繪製文字 y = y + 5; PdfTrueTypeFont font = new PdfTrueTypeFont(new Font("黑體", 10f, FontStyle.Bold), true); PdfStringFormat format = new PdfStringFormat(PdfTextAlignment.Left); String footerText = " Website\n https://g20.org/"; doc.Pages[i].Canvas.DrawString(footerText, font, PdfBrushes.Black, x, y, format); //在每一頁的指定位置當前頁碼和總頁碼 PdfPageNumberField number = new PdfPageNumberField(); PdfPageCountField count = new PdfPageCountField(); PdfCompositeField compositeField = new PdfCompositeField(font, PdfBrushes.Black, "{0}/{1}", number, count); compositeField.StringFormat = new PdfStringFormat(PdfTextAlignment.Right, PdfVerticalAlignment.Top); SizeF size = font.MeasureString(compositeField.Text); compositeField.Bounds = new RectangleF(pageSize.Width - x - size.Width, y, size.Width, size.Height); compositeField.Draw(doc.Pages[i].Canvas); } } } }View Code
總結
相較於上篇文章中的新增頁首的方法,本方法在處理現有的PDF文件中更具實用性。當然,兩種方法針對不同的程式設計需要,滿足不同的需求,我們在選擇這兩種方法時,可酌情而定。
(本文完)
如需轉載,請註明出處。