Mirror an image
What does it do?
The mirror operation can be used to mirror an image. The image will be reversed to give a right to left version of the image.
Example in Java to mirror an image
File input = new File("path\to\file");
File output = new File("path\to\output rotated file");
ImageProcessingOperations operations = new ImageProcessingOperations();
operations.mirror();
//you can chain other operations here like rotate, 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.