Transform in UWP Image Editor

18 Nov 20181 minute to read

The image editor control can perform the image transformations namely, rotation and flip. The transformations can be achieved in the following two ways:

  • From Toolbar
  • Using Code

Rotation

From Toolbar

To rotate an image, in toolbar, click the Rotate button in the submenu of the Transforms. Clicking the button results in rotating the image to 90 degrees clockwise from the current state.

Using Code

Programmatically, the Rotate method is used in the Image Editor control to rotate the image.

Angle cannot be specified in code to alter the rotation angle of the image

  • C#
  • imageEditor.Rotate();

    rotate

    Flip

    From Toolbar

    The Image Editor control can show the mirror image. To get the mirror image of the loaded image, click Flip button in the submenu of the Transforms in the toolbar.

    Using Code

    The Flip method flips the image horizontally or vertically based on the FlipDirection; it is specified as argument for the Flip method.

    By default, image flips horizontally.

  • C#
  • imageEditor.Flip(FlipDirection.Horizontal);

    FlipImage