为 .NET 安装 Spire.Doc
首先,您需要添加 Spire.Doc for .NET 包中包含的 DLL 文件作为 .NET 项目中的引用。DLL 文件可以从此链接下载或通过NuGet安装。
PM> Install-Package Spire.Doc从 C# 和 VB.NET 中的 Word 文档中删除文本或图像水印
您可以通过将Document.Watermark属性设置为 null来删除 Word 文档的水印。
以下步骤向您展示如何从 Word 文档中删除水印:
- 初始化Document类的一个实例。
- 使用Document.LoadFromFile()方法加载 Word 文档。
- 通过将Document.Watermark属性设置为 null从文档中删除水印。
- 使用Document.SaveToFile()方法保存结果文档。
【C#】
using Spire.Doc;namespace RemoveWatermark{class Program{static void Main(string[] args){//Create a Document instanceDocument doc = new Document();//Load a Word documentdoc.LoadFromFile("Sample.docx");//Remove the watermark from the documentdoc.Watermark = null;//Save the result documentdoc.SaveToFile("RemoveWatermark.docx", FileFormat.Docx2013);}}}
【VB.NET】
using Spire.Doc;namespace RemoveWatermark{class Program{static void Main(string[] args){//Create a Document instanceDocument doc = new Document();//Load a Word documentdoc.LoadFromFile("Sample.docx");//Remove the watermark from the documentdoc.Watermark = null;//Save the result documentdoc.SaveToFile("RemoveWatermark.docx", FileFormat.Docx2013);}}}

欢迎下载|体验更多E-iceblue产品
获取更多信息请咨询在线客服 ;
标签:
声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!