Class FlipFilter

All Implemented Interfaces:
BufferedImageOp, Cloneable

public class FlipFilter extends AbstractBufferedImageOp
A filter which flips images or rotates by multiples of 90 degrees.
  • Field Details

    • FLIP_H

      public static final int FLIP_H
      Flip the image horizontally.
      See Also:
    • FLIP_V

      public static final int FLIP_V
      Flip the image vertically.
      See Also:
    • FLIP_HV

      public static final int FLIP_HV
      Flip the image horizontally and vertically.
      See Also:
    • FLIP_90CW

      public static final int FLIP_90CW
      Rotate the image 90 degrees clockwise.
      See Also:
    • FLIP_90CCW

      public static final int FLIP_90CCW
      Rotate the image 90 degrees counter-clockwise.
      See Also:
    • FLIP_180

      public static final int FLIP_180
      Rotate the image 180 degrees.
      See Also:
  • Constructor Details

    • FlipFilter

      public FlipFilter()
      Construct a FlipFilter which flips horizontally and vertically.
    • FlipFilter

      public FlipFilter(int operation)
      Construct a FlipFilter.
      Parameters:
      operation - the filter operation
  • Method Details