Marblecore Imaging Library Documentation

Documentation Introduction
Documentation / Marblecore Imaging / Methods / RotateRight

RotateRight method

Performs a 90 degree clockwise rotation on the image.

Syntax

Boolean RotateRight()

Return value

Returns true if the function succeeded.

Example

The example below shows the effect of this method and how to use it. You can slide the marker in the before/after picture to see the difference. If you take a look at the example code, assume there is a reference to the Marblecore Imaging object with the name 'MarblecoreImaging'. Transparent parts of the image are displayed using a checkerboard pattern.
 
before
after
 
1 // Load the specified image in memory
2 MarblecoreImaging.LoadFromFile("example-rotateright-before.jpg");
3 
4 // Execute the operation
5 MarblecoreImaging.RotateRight();
6 
7 // Save the modified image to the specified file
8 MarblecoreImaging.SaveToFile("example-rotateright-after.jpg");

Category

Transformations

See also

Clear | Crop | Expand | FlipHorizontal | FlipVertical | Opacity | Resize | Rotate | RotateLeft | RoundEdges | Shear | Shrink | Skew | Straighten | Thumbnail