用于调整 .net 中图像大小的库
是否有一个好的库可以在 .NET 中调整图像大小并保持良好的质量?我对 GDI+ 生成的调整大小图像的质量不满意。
图书馆是免费还是收费并不重要。
Is there a good library to resize an image in .NET with good quality? I'm not pleased with the quality of resized images that GDI+ produces.
It does not matter if the library is free or at a cost.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我最终使用了 Imazen / Nathanael 的 imageresizer 库Jones(网站),效果很好。
I ended up using the imageresizer library by Imazen / Nathanael Jones (website), which works great.
这很奇怪,GDI+ 有很好的过滤器。请务必将 Graphics.InterpolationMode 属性设置为高质量设置。 LeadTools 是领先的图形库之一,如果您喜欢开源,则可以使用 ImageMagick。
That's pretty odd, GDI+ has nice filters. Be sure to set the Graphics.InterpolationMode property to a high quality setting. LeadTools is one of the leading graphics libraries, ImageMagick if you prefer open source.
嗯...试试这个:
http://www.aspfree.com/c/a/C-Sharp/Lossless-Image-Resizing-in-C-Sharp/2/
它正在谈论一个图像量化库(如果你看一下)通过教程的其他页面)显然会提供更高质量的图像输出。
Hmm... try this:
http://www.aspfree.com/c/a/C-Sharp/Lossless-Image-Resizing-in-C-Sharp/2/
It's talking about an image quantization library that (if you look through the other pages of the tutorial) apparently will provide a much higher quality image output.