C#、.net 中的图像处理

发布于 2024-08-16 21:46:05 字数 151 浏览 6 评论 0原文

我想创建一个小应用程序,允许我在另一个图像上插入图像。而且我也想插入一些文本。

那么有人可以指出我从哪里开始吗?有没有任何开源库可以让我完成这项任务?

我正在寻找可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

您需要使用图形< /a> 类。

例如:

using(var oldImage = Bitmap.FromFile(path))
using(var newImage = new Bitmap(250, 250))
using(var graphics = Graphics.FromImage(newImage)) {
    graphics.DrawImage(oldImage, 10, 15);
    graphics.DrawString("Hello, world!", SystemFonts.DefaultFont, Brushes.Red, 0, 0);
    newImage.Save(path);
}

You need to use the Graphics class.

For example:

using(var oldImage = Bitmap.FromFile(path))
using(var newImage = new Bitmap(250, 250))
using(var graphics = Graphics.FromImage(newImage)) {
    graphics.DrawImage(oldImage, 10, 15);
    graphics.DrawString("Hello, world!", SystemFonts.DefaultFont, Brushes.Red, 0, 0);
    newImage.Save(path);
}
栀梦 2024-08-23 21:46:05

尝试 ImageMagick.Net。里面有很多东西。

Try ImageMagick.Net. Lotsa stuff in there.

总攻大人 2024-08-23 21:46:05

您应该可以使用 System.Drawing.Graphics如果你不需要太花哨的东西。

You should be OK using System.Drawing.Graphics if you don't need anything too fancy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文