Class Rotate90Left


public class Rotate90Left extends ImageToImageOperation
Rotates images by 90 degrees counter-clockwise (to the left). Input image must implement IntegerImage.

Usage example

 Rotate90Left rotate = new Rotate90Left();
 rotate.setInputImage(image);
 rotate.process();
 PixelImage rotatedImage = rotate.getOutputImage();
 
Author:
Marco Schmidt