static BufferedImage changeBrightness(BufferedImage src, float val) { return new RescaleOp(val, 0, null).filter(src, null); }