向图像添加水印图像
我想在我的所有图像中添加一个小的淡出水印图像。
有没有办法在 c# 中做到这一点?
I want to add a small, kind of fading out watermark image to all my images.
is there a way to do this in c#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 System.Drawing 组合图像,
只需确保处置所有使用的资源,因为 System.Drawing 使用非托管 GDI+ 资源
You can compose images using
System.Drawing
Just make sure to dispose all resources used as System.Drawing uses unmanaged GDI+ resources