What's the simplest way to desaturate a BufferedImage
?
Use ColorConvertOp
:
public static BufferedImage desaturate(BufferedImage source) {
ColorConvertOp colorConvert =
new ColorConvertOp(ColorSpace.getInstance(ColorSpace.CS_GRAY), null);
colorConvert.filter(source, source);
return source;
}
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 image i
.
That being said, I think the simplest way to desaturate a BufferedImage
instance is the following:
BufferedImage desaturatedImage = GrayFilter.createDisabledImage(originalImage);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With