.NET加水印/验证码的NuGet包
我的在前两篇文章(水印,验证码)中,我介绍了使用Direct2D给图片加水印/验证码,今天我将其进行了封装,发布了一个NuGet包Sdcb.Imaging
:
<PackageReference Include="Sdcb.Imaging" Version="1.1.0" />
或者在这个链接中下载:
https://www.nuget.org/packages/Sdcb.Imaging
.NET中给图片加水印
using (var imageStream = File.OpenRead(@"..\..\..\..\sample-images\src.png"))
using (var outputStream = File.OpenWrite(@"..\..\..\..\sample-images\watermark-test1.png"))
{
WatermarkTool.WatermarkText(
imageStream, outputStream,
watermark: "Watermark here",
font: "Times New Roman",
fontSize: 30,
colorARGB: 0x7f_FF_FF_FF); // 50% transparent white
}
其中,可以对字体(font
),字体大小(fontSize
),颜色(colorARGB
)进行单独配置,原图如下:
添加水印之后的效果:
.NET中创建验证码
byte[] pngBytes = CaptchaTool.CreatePngImage(
width: 200, height: 100,
text: "CAPTCHA",
font: "Times New Roman",
fontSize: 50.0f,
lineCount: 5,
rotation: false,
turbulenceAmount: 60.0f);
File.WriteAllBytes(
@"..\..\..\..\sample-images\captcha-test1.png", pngBytes);
其中,可以对字体(font
)、字体大小(fontSize
)、随机线条数量(lineCount
)、是否启用随机旋转(rotation
)、水波移动量(turbulenceAmount
)单独进行指定。
其中水波移动量(turbulenceAmount
)可以为负数,表示向反方向移动。
验证码效果:
注意:
- 验证码不适合使用无衬线字母,因为容易分不清数字1/字母I/字母小写l;
- 验证码适合全大写,全大写更容易分清字母L。
- 开启旋转则不适合使用英文,因为英文旋转后辨识度不高(可以用中文);
- 水波移动量绝对值应该尽量低于100,否则人类也很难识别了。
作者:周杰
出处:https://www.cnblogs.com/sdflysha
本文采用
知识共享署名-非商业性使用-相同方式共享 2.5 中国大陆许可协议
进行许可,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。
原文地址:https://www.cnblogs.com/sdflysha/p/sdcb-imaging.html
时间: 2024-10-25 05:28:59