如何在 Java 中降低 BufferedImage 的饱和度?
降低 BufferedImage
饱和度的最简单方法是什么?
What's the simplest way to desaturate a BufferedImage
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
降低 BufferedImage
饱和度的最简单方法是什么?
What's the simplest way to desaturate a BufferedImage
?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
使用
ColorConvertOp
:更新:
确实有更简单的方法。您可以使用
GrayFilter
< /a> 类。该类的优点在于它提供了一个静态实用方法(即 createDisabledImage(Image i)),该方法将返回图像i
的灰色版本。话虽这么说,我认为降低 BufferedImage 实例饱和度的最简单方法如下:
Use
ColorConvertOp
:Update :
There is indeed a simpler way. You can use the
GrayFilter
class. What's nice about this class is that it provides a static utility method (i.e.createDisabledImage(Image i)
) that will return a grayed-out version of the imagei
.That being said, I think the simplest way to desaturate a
BufferedImage
instance is the following: