.net 图像编辑算法

发布于 2024-10-26 12:05:03 字数 438 浏览 3 评论 0原文

我想要一个能够向图像添加软边框的 .net(或本机)代码。

例如:

初始图像

转换后的图像:

我用 Word 2010 做到了这一点,但我确信有一个 C++ 或 .net 库可以执行相同的操作。

如果您熟悉可以执行此操作的某些代码,请告诉我。

谢谢。

I want a .net (or native) code that will be able to add a soft borders to an image.

For example:

Initial image

Image after transformation:

I did it with Word 2010, but I am sure there is a C++ or .net lib that does the same.

If you are familiar with some code that can do this, please let me know.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

奶气 2024-11-02 12:05:03

最简单的方法是创建一个从白色渐变为透明的图像,然后将其绘制在图像之上。喜欢:

using (Bitmap b = (Bitmap)Image.FromFile("frame.png")) {
  using (Graphics g = Graphics.FromImage(theImage)) {
    g.DrawImage(b, 0, 0, theImage.Width, theImage.Height);
  }
}

The simplest way is to create an image that fades from white to transparent, and just draw that on top of the image. Like:

using (Bitmap b = (Bitmap)Image.FromFile("frame.png")) {
  using (Graphics g = Graphics.FromImage(theImage)) {
    g.DrawImage(b, 0, 0, theImage.Width, theImage.Height);
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文