彩票走势图

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

翻译|使用教程|编辑:胡涛|2022-07-11 15:45:07.620|阅读 137 次

概述:本节将演示如何使用 Spire.Doc 在 C# 中为 Word 文档添加文本水印和图像水印。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

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

Spire.Doc for.NET 最新下载

在 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.Docx2013);

//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 property
picture.Scaling = 20;
picture.IsWashout = false;

//add the picture watermark
doc.Watermark = picture;

//save the document to file
doc.SaveToFile("ImageWatermark.docx", FileFormat.Docx2013);

}
}
}
}



在 C# 中将文本水印和图像水印添加到 Word 文档

在 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.Docx2013);

//create a new instance of the TextWatermark
TextWatermark 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 watermark
doc.Watermark = txtWatermark;

//save the file.
doc.SaveToFile("TextWatermark.docx", FileFormat.Docx2013);

}
}
}
}


在 C# 中将文本水印和图像水印添加到 Word 文档


欢迎下载|体验更多E-iceblue产品

获取更多信息请咨询  ;技术交流Q群(767755948)


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@cahobeh.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP