Brighten an image
What does it do?
The brighten operation will make the image brighter by the percent given.
Example in Java to brighten an image
File input = new File("path\to\file");
File output = new File("path\to\output rotated file");
ImageProcessingOperations operations = new ImageProcessingOperations();
operations.brighten(percent);
//you can chain other operations here like rotate, mirror, etc
JDeli.convert(input,output,operations);
Click here for a full list of Image Processing Operations and more general information on Image processing with JDeli.