WebRotateFlipType enumeration

WebRotateFlipType enumeration

Specifies the rotation and flip operation to apply to an image.

The WebRotateFlipType type exposes the following members:

Fields

FieldDescription
ROTATE_NONE_FLIP_NONENo rotation and no flipping.
ROTATE_90_FLIP_NONERotate 90 degrees clockwise with no flipping.
ROTATE_180_FLIP_NONERotate 180 degrees with no flipping.
ROTATE_270_FLIP_NONERotate 270 degrees clockwise with no flipping.
ROTATE_NONE_FLIP_XNo rotation with a horizontal flip (flip along the X-axis).
ROTATE_90_FLIP_XRotate 90 degrees clockwise followed by a horizontal flip (flip along the X-axis).
ROTATE_180_FLIP_XRotate 180 degrees followed by a horizontal flip (flip along the X-axis).
ROTATE_270_FLIP_XRotate 270 degrees clockwise followed by a horizontal flip (flip along the X-axis).
ROTATE_NONE_FLIP_YNo rotation with a vertical flip (flip along the Y-axis).
This is equivalent to WebRotateFlipType.ROTATE_180_FLIP_X.
ROTATE_90_FLIP_YRotate 90 degrees clockwise followed by a vertical flip (flip along the Y-axis).
This is equivalent to WebRotateFlipType.ROTATE_270_FLIP_X.
ROTATE_180_FLIP_YRotate 180 degrees followed by a vertical flip (flip along the Y-axis).
This is equivalent to WebRotateFlipType.ROTATE_NONE_FLIP_X.
ROTATE_270_FLIP_YRotate 270 degrees clockwise followed by a vertical flip (flip along the Y-axis).
This is equivalent to WebRotateFlipType.ROTATE_90_FLIP_X.
ROTATE_NONE_FLIP_XYNo rotation with both a horizontal and vertical flip (flip along both axes).
This is equivalent to WebRotateFlipType.ROTATE_180_FLIP_NONE.
ROTATE_90_FLIP_XYRotate 90 degrees clockwise followed by both a horizontal and vertical flip (flip along both axes).
This is equivalent to WebRotateFlipType.ROTATE_270_FLIP_NONE.
ROTATE_180_FLIP_XYRotate 180 degrees followed by both a horizontal and vertical flip (flip along both axes).
This is equivalent to WebRotateFlipType.ROTATE_NONE_FLIP_NONE.
ROTATE_270_FLIP_XYRotate 270 degrees clockwise followed by both a horizontal and vertical flip (flip along both axes).
This is equivalent to WebRotateFlipType.ROTATE_90_FLIP_NONE.

See Also