有時我們需要在圖像上添加水印。例如,在圖像上添加版權(quán)或名稱。我們可能還需要在文檔中創(chuàng)建水印。接下來就來講一下 C# 如何在圖像上添加水印。首先,將需要添加水印的圖片放在程序運行目錄,水印示例圖片具體如下:
其次,在項目中添加Nuget包“System.Drawing.Common”引用。
或者代碼安裝
Install-Package System.Drawing.Common
為圖片添加水印代碼如下,說明在代碼中:
static void Main(string[] args)
{
#region 圖片加水印
//設(shè)置目標圖片路徑
string src_path = "D:\\test001.jpg";
//設(shè)置保存位置
string dst_path = "D:\\cptest001.jpg";
//讀取目標圖片
System.Drawing.Image src_img = (System.Drawing.Image)Bitmap.fromFile(src_path);
//設(shè)置水印字體、字號
Font font = new Font("Arial", 35, FontStyle.Italic, GraphicsUnit.Pixel);
//設(shè)置水印顏色
Color color = Color.fromArgb(255, 233, 0, 0);
//運算水印位置
Point atpoint = new Point(src_img.Width / 2, src_img.Height / 2);
//初始化畫刷
SolidBrush brush = new SolidBrush(color);
//初始化gdi繪圖
using (Graphics graphics = Graphics.fromImage(src_img))
{
StringFormat sf = new StringFormat();
sf.Alignment = StringAlignment.Center;
sf.LineAlignment = StringAlignment.Center;
graphics.DrawString("DOTNET開發(fā)跳槽", font, brush, atpoint, sf);
using (MemoryStream m = new MemoryStream())
{
//以jpg格式寫入到內(nèi)存流,完成繪制
src_img.Save(m, System.Drawing.Imaging.ImageFormat.Jpeg);
//保存到磁盤
src_img.Save(dst_path);
}
}
#endregion
}
最后,附上效果圖
該文章在 2023/8/16 9:21:43 編輯過