WP_Image_Editor::rotate() WordPress Method
The WP_Image_Editor::rotate() method is used to rotate an image by a given number of degrees. It accepts an integer value representing the number of degrees to rotate the image by. This method is part of the Image Editing API and is available for use with all WordPress image editing classes.
WP_Image_Editor::rotate( float $angle ) #
Rotates current image counter-clockwise by $angle.
Parameters
- $angle
(float)(Required)
Return
(true|WP_Error)
Source
File: wp-includes/class-wp-image-editor.php
abstract public function rotate( $angle );
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.5.0 | Introduced. |