What does it do?
SuperScale2x operation can be used to the scale the provided image 2 times and returns a new scaled image.
Example in Java to superScale2x an image
File input = new File("path\to\file");
File output = new File("path\to\output rotated file");
ImageProcessingOperations operations = new ImageProcessingOperations();
operations.superScale2x();
//you can chain other operations here like rotate, scale, 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.