mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
ca0e762b64
* invert * flip_horizontal * flip_vertical * rotate git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1472 0fc631ac-6414-0410-93d0-97cfa31319b6
19 lines
637 B
Plaintext
19 lines
637 B
Plaintext
Function: flip_horizontal
|
|
|
|
--Usage--
|
|
> flip_horizontal(input: image)
|
|
|
|
Flip an image horizontally.
|
|
|
|
--Parameters--
|
|
! Parameter Type Description
|
|
| @input@ [[type:image]] Image to flip.
|
|
|
|
--Examples--
|
|
> flip_horizontal("image_logo.png") == [[Image]]
|
|
>>> flip_horizontal(<img src="image_logo.png" alt='"image_logo.png"' style="border:1px solid black;vertical-align:middle;margin:1px;" />) == <img src="image_logo_hflip.png" alt='"image_logo_hflip.png"' style="border:1px solid black;vertical-align:middle;margin:1px;" />
|
|
|
|
--See also--
|
|
| [[fun:flip_vertical]] Flip an image vertically
|
|
| [[fun:rotate]] Rotate an image
|