C#中如何給Excel添加浮水印
我們知道Microsoft Excel並沒有內建的功能直接給Excel表添加浮水印,但是其實我們可以用其他變通的方式來解決此問題,如通過添加頁首圖片或藝術字的方法來模仿浮水印的外觀。所以在這篇文章中,我將向您示範來如何通過在Excel中建立和插入頁首圖片來為excel添加浮水印。之前我也分享了如何給word文檔添加浮水印和pdf檔案添加浮水印的方法,有需要也可以參考。
這裡我下載了一個E-iceblue公司開發的免費版的Excel組件- Free Spire.XLS,這樣既節省時間,又簡化了代碼。
控制項安裝後,建立項目,添加安裝目錄下的dll檔案作為項目的引用,並添加如下命名空間:
using System;using System.Drawing;using System.Windows.Forms;using Spire.Xls;
這是原excel表的:
以下是詳細步驟和程式碼片段:
步驟1:首先定義一個DrawText()方法,並在字串的內容基礎上建立一個圖片。字串可以是“機密”、“草稿”、“樣品”或任何你想要顯示為浮水印的文本。
private static System.Drawing.Image DrawText(String text, System.Drawing.Font font, Color textColor, Color backColor, double height, double width) <br>{ //建立一個指定寬度和高度的位元影像映像 Image img = new Bitmap((int)width, (int)height); Graphics drawing = Graphics.FromImage(img); //擷取文字大小 SizeF textSize = drawing.MeasureString(text, font); //旋轉圖片 drawing.TranslateTransform(((int)width - textSize.Width) / 2, ((int)height - textSize.Height) / 2); drawing.RotateTransform(-45); drawing.TranslateTransform(-((int)width - textSize.Width) / 2, -((int)height - textSize.Height) / 2); //繪製背景 drawing.Clear(backColor); //建立文本刷 Brush textBrush = new SolidBrush(textColor); drawing.DrawString(text, font, textBrush, ((int)width - textSize.Width) / 2, ((int)height - textSize.Height) / 2); drawing.Save(); return img;}
步驟2:初始化一個新的活頁簿並載入添加浮水印的檔案。
Workbook workbook = new Workbook();
workbook.LoadFromFile(@"C:\Users\Administrator\Desktop\sample.xlsx");
步驟3:調用DrawText()方法建立一個圖片,並將頁首圖片設定為靠左對齊。其次,因為在視圖模式是布局的狀態下頁首圖片才會顯示,所以一定要記得將視圖模式改為布局。
Font font = new System.Drawing.Font("arial", 40);String watermark = "內部資料";foreach (Worksheet sheet in workbook.Worksheets){ //調用DrawText()方法建立圖片 System.Drawing.Image imgWtrmrk = DrawText(watermark, font, System.Drawing.Color.LightCoral, System.Drawing.Color.White, sheet.PageSetup.PageHeight, sheet.PageSetup.PageWidth); //將頁首圖片設定為靠左對齊 sheet.PageSetup.LeftHeaderImage = imgWtrmrk; sheet.PageSetup.LeftHeader = "&G"; //浮水印只會在此種模式下顯現 sheet.ViewMode = ViewMode.Layout; }
步驟4:儲存並開啟檔案。
workbook.SaveToFile("浮水印.xlsx", ExcelVersion.Version2010);
System.Diagnostics.Process.Start("浮水印.xlsx");
:
全部代碼:
using System;using System.Drawing;using System.Windows.Forms;using Spire.Xls; namespace Add_Watermark_To_Excel{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { //初始化一個新活頁簿並載入要添加浮水印的檔案 Workbook workbook = new Workbook(); workbook.LoadFromFile(@"C:\Users\Administrator\Desktop\sample.xlsx"); //在頁首插入圖片 Font font = new System.Drawing.Font("arial", 40); String watermark = "內部資料"; foreach (Worksheet sheet in workbook.Worksheets) { //調用DrawText()方法建立圖片 System.Drawing.Image imgWtrmrk = DrawText(watermark, font, System.Drawing.Color.LightCoral, System.Drawing.Color.White, sheet.PageSetup.PageHeight, sheet.PageSetup.PageWidth); //將頁首圖片設定為靠左對齊 sheet.PageSetup.LeftHeaderImage = imgWtrmrk; sheet.PageSetup.LeftHeader = "&G"; //浮水印只會在此種模式下顯現 sheet.ViewMode = ViewMode.Layout; } workbook.SaveToFile("浮水印.xlsx", ExcelVersion.Version2010); System.Diagnostics.Process.Start("浮水印.xlsx"); } <br> private static System.Drawing.Image DrawText(String text, System.Drawing.Font font, Color textColor, Color backColor, double height, double width) { //建立一個指定寬度和高度的位元影像映像 Image img = new Bitmap((int)width, (int)height); Graphics drawing = Graphics.FromImage(img); //擷取文字大小 SizeF textSize = drawing.MeasureString(text, font); //旋轉圖片 drawing.TranslateTransform(((int)width - textSize.Width) / 2, ((int)height - textSize.Height) / 2); drawing.RotateTransform(-45); drawing.TranslateTransform(-((int)width - textSize.Width) / 2, -((int)height - textSize.Height) / 2); //繪製背景 drawing.Clear(backColor); //建立文本刷 Brush textBrush = new SolidBrush(textColor); drawing.DrawString(text, font, textBrush, ((int)width - textSize.Width) / 2, ((int)height - textSize.Height) / 2); drawing.Save(); return img; } }}
感謝您的瀏覽,希望本文能給您帶來一定的協助,謝謝大家對本站的 支援!