What does it do?
The rotate operation will rotate the image clockwise around its central point by the number of degrees given.
Example in Java to rotate an image
File input = new File("path\to\file");
File output = new File("path\to\output rotated file");
ImageProcessingOperations operations = new ImageProcessingOperations();
operations.rotate(degrees);
//you can chain other operations here like scale, blur, 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.