首页 .Net .NET Core Aspose Word(.doc,docx)文件加水印

.NET Core Aspose Word(.doc,docx)文件加水印

1、Aspose组件下载

Aspose下载地址:https://products.aspose.com/words/net

破解版下载地址:https://download.csdn.net/download/yedajiang44/10667863 (aspose.words 18.7破解版含net 和 .net core 2.0版本)

官方文档地址:https://docs.aspose.com/display/wordsnet/Home

官方Demo代码:https://github.com/aspose-words/Aspose.Words-for-.NET

2、添加引用

1)项目直接添加Aspose.Words.dll的引用

2)使用Nuget引用System.Text.Encoding.CodePages和SkiaSharp

使用Nuget的界面的管理器搜索 "System.Text.Encoding.CodePages" 和 "SkiaSharp" => 找到分别点击"安装"。

相关文档:VS(Visual Studio)中Nuget的使用

3、Word文件加水印代码

将Word文件通过Aspose.Words组件添加水印并保存,相关示例代码如下:

using Aspose.Words;
using Aspose.Words.Drawing;
using System;
using System.Drawing;
namespace WordWatermark
{
    >Program
    {
        static void Main(string[] args)
        {
            var sourceFilePath = @"F:\1.doc";
            var objectFilePath = @"F:\2.doc";
            //Aspose.Words.License lic = new Aspose.Words.License();
            //lic.SetLicense("Aspose.Total.lic");破解版不用设置license
            // open word file
            var doc = new Document(sourceFilePath);
            InsertWatermarkText(doc, "hello world!");
            doc.Save(objectFilePath);
        }
        private static void InsertWatermarkText(Document doc, string watermarkText)
        {
            // 创建一个水印形状。这将是一个WordArt形状。
            // 可以随意尝试其他形状类型作为水印。
            Shape watermark = new Shape(doc, ShapeType.TextPlainText);
            watermark.Name = "WaterMark";
            // 设置水印文本。
            watermark.TextPath.Text = watermarkText;
            watermark.TextPath.FontFamily = "Arial";
            watermark.Width = 500;
            watermark.Height = 100;
            // 文本将从左下角指向右上角。
            watermark.Rotation = -40;
            // 如果需要纯黑色文本,请删除以下两行。
            watermark.Fill.Color = Color.Gray; // 尝试LightGray得到更多文字风格的水印
            watermark.StrokeColor = Color.Gray; // 尝试LightGray得到更多文字风格的水印
            // 将水印放在页面中心。
            watermark.RelativeHorizontalPosition = RelativeHorizontalPosition.Page;
            watermark.RelativeVerticalPosition = RelativeVerticalPosition.Page;
            watermark.WrapType = WrapType.None;
            watermark.VerticalAlignment = VerticalAlignment.Center;
            watermark.HorizontalAlignment = HorizontalAlignment.Center;
            //创建一个新的段落,并附加水印到这段。
            Paragraph watermarkPara = new Paragraph(doc);
            watermarkPara.AppendChild(watermark);
            //在每个文档部分的所有标题中插入水印。
            foreach (Section sect in doc.Sections)
            {
              //每个部分可能有三个不同的标题,因为我们需要
              //水印将出现在所有页面,插入到所有页眉。
                InsertWatermarkIntoHeader(watermarkPara, sect, HeaderFooterType.HeaderPrimary);
                InsertWatermarkIntoHeader(watermarkPara, sect, HeaderFooterType.HeaderFirst);
                InsertWatermarkIntoHeader(watermarkPara, sect, HeaderFooterType.HeaderEven);
            }
        }
        private static void InsertWatermarkIntoHeader(Paragraph watermarkPara, Section sect, HeaderFooterType headerType)
        {
            HeaderFooter header = sect.HeadersFooters[headerType];
            if (header == null)
            {
                // There is no header of the specified type in the current section, create it.
                header = new HeaderFooter(sect.Document, headerType);
                sect.HeadersFooters.Add(header);
            }
            //在标题中插入一个水印的克隆。
            header.AppendChild(watermarkPara.Clone(true));
        }
    }
}

4、本文项目代码下载

下载地址:https://www.cjavapy.com/download/5be40359dc72d915fc310687/

相关文档:.NET Core Aspose Word(.doc,docx)转成pdf文件

VS(Visual Studio)中Nuget的使用

特别声明:本站部分内容收集于互联网是出于更直观传递信息的目的。该内容版权归原作者所有,并不代表本站赞同其观点和对其真实性负责。如该内容涉及任何第三方合法权利,请及时与824310991@qq.com联系,我们会及时反馈并处理完毕。