What is the fastest way to modify an image file (apply filters, change resolution, etc..) in java.
I tried to open a file with ImageIO
and modify with java.awt.image
ColorConvertOp op = new ColorConvertOp(ColorSpace.getInstance(ColorSpace.CS_GRAY), null);
op.filter(bufferedImage, bufferedImage);
It took a lot of time, do you have any faster method to do it?