C#、.net 中的图像处理
我想创建一个小应用程序,允许我在另一个图像上插入图像。而且我也想插入一些文本。
那么有人可以指出我从哪里开始吗?有没有任何开源库可以让我完成这项任务?
我正在寻找可以在 C#、Visual Studio .net 中实现的解决方案。
谢谢。
I want to create a small application that allows me to insert an image on top of another image.And also i want to insert some text as well.
So can someone points me out where to start.Is there any open source libraries that allows me to do this task?.
I am after a solution that can be implemented in C#,Visual Studio .net.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要使用
图形
< /a> 类。例如:
You need to use the
Graphics
class.For example:
尝试 ImageMagick.Net。里面有很多东西。
Try ImageMagick.Net. Lotsa stuff in there.
您应该可以使用 System.Drawing.Graphics如果你不需要太花哨的东西。
You should be OK using System.Drawing.Graphics if you don't need anything too fancy.