diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-07-19 15:21:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-19 15:21:16 +0200 |
commit | eea14a0edc3f2a8ab4a91d1e142d48a5348584bb (patch) | |
tree | 1df5ccb333af741bdba800ca0cb80b0eec91648e /doc/classes | |
parent | 8351d75b7f8322fda894c151db7c91106425c098 (diff) | |
parent | 7e66903d5610ea5c72852d11b29c3f1a31a5aa00 (diff) |
Merge pull request #63005 from Chaosus/image_rotate
Implement `rotate_90/rotate_180` functions to `Image`
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Image.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/classes/Image.xml b/doc/classes/Image.xml index b69dd00bb8..a927345e79 100644 --- a/doc/classes/Image.xml +++ b/doc/classes/Image.xml @@ -378,6 +378,19 @@ Converts a standard RGBE (Red Green Blue Exponent) image to an sRGB image. </description> </method> + <method name="rotate_180"> + <return type="void" /> + <description> + Rotates the image by [code]180[/code] degrees. The width and height of the image must be greater than [code]1[/code]. + </description> + </method> + <method name="rotate_90"> + <return type="void" /> + <argument index="0" name="direction" type="int" enum="ClockDirection" /> + <description> + Rotates the image in the specified [code]direction[/code] by [code]90[/code] degrees. The width and height of the image must be greater than [code]1[/code]. If the width and height are not equal, the image will be resized. + </description> + </method> <method name="save_exr" qualifiers="const"> <return type="int" enum="Error" /> <argument index="0" name="path" type="String" /> |