1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > Word控件Spire.Doc 【页面背景】教程(8) ;在 C# 中将文本水印和图像水印添加到 Word 文档

Word控件Spire.Doc 【页面背景】教程(8) ;在 C# 中将文本水印和图像水印添加到 Word 文档

时间:2022-03-01 19:04:20

相关推荐

Word控件Spire.Doc 【页面背景】教程(8) ;在 C# 中将文本水印和图像水印添加到 Word 文档

文字水印和图片水印是Word文档中的两种水印。文本水印总是显示一些与单词上下文相关的附加信息。而图像水印用于使Word文档更具吸引力。本节将演示如何使用 Spire.Doc 在 C# 中为 Word 文档添加文本水印和图像水印。

Spire.Doc 最新下载(qun767755948)/product/3368/download

在 C# 中添加图像水印:

using Spire.Doc;namespace SetImageWatermark{class Program{static void Main(string[] args){{//create a new instance of Document and load the document from file.Document doc = new Document();doc.LoadFromFile("Sample.docx", FileFormat.Docx);//create a new instance of the PictureWatermark and load the picture from file.PictureWatermark picture = new PictureWatermark();picture.Picture = System.Drawing.Image.FromFile("logo.png");//set the image watermark scaling and Washout propertypicture.Scaling = 20;picture.IsWashout = false;//add the picture watermarkdoc.Watermark = picture;//save the document to filedoc.SaveToFile("ImageWatermark.docx", FileFormat.Docx);}}}}

在 C# 中添加文本水印:

using Spire.Doc;using Spire.Doc.Documents;using System.Drawing;namespace SetTextWatermark{class Program{static void Main(string[] args){{//create a new instance of Document and load the document from file.Document doc = new Document();doc.LoadFromFile("Sample.docx", FileFormat.Docx);//create a new instance of the TextWatermarkTextWatermark txtWatermark = new TextWatermark();//set the text watermark with text string, font, color and layout.txtWatermark.Text = "Confidential";txtWatermark.FontSize = 45;txtWatermark.Color = Color.Green;txtWatermark.Layout = WatermarkLayout.Diagonal;//add the text watermarkdoc.Watermark = txtWatermark;//save the file.doc.SaveToFile("TextWatermark.docx", FileFormat.Docx);}}}}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。