# Rotating Images

To rotate an image, specify the angle and direction.

#### Rotate Clockwise

Example:

```
get the image
rotate the image with
    the angle is 90
    the direction is "clockwise"
```

This rotates the image 90 degrees clockwise.

#### Rotate Counter-Clockwise

Example:

```
get the image
rotate the image with
    the angle is 45
    the direction is "counter-clockwise"
```

This rotates the image 45 degrees counter-clockwise.
