Class Rotate90Right


  • public class Rotate90Right
    extends ImageToImageOperation
    Rotates images by 90 degrees clockwise (to the right). Input image must implement IntegerImage.

    Usage example

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