mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 13:06:59 -04:00
adafc6dfc3
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@577 0fc631ac-6414-0410-93d0-97cfa31319b6
25 lines
1.7 KiB
Plaintext
25 lines
1.7 KiB
Plaintext
Function: drop_shadow
|
|
|
|
--Usage--
|
|
> drop_shadow(image, offset_x: offset, offset_y: offset)
|
|
|
|
Add a drop shadow to an image.
|
|
|
|
--Parameters--
|
|
! Parameter Type Default Description
|
|
| @input@ [[type:image]] Image to add drop shadow to
|
|
| @offset_x@ [[type:double]] 0 Relative position of the shadow, a positive number moves the shadow to the left.<br />
|
|
Value is in the range 0 (no movement) to 1 (move by the width of the image)
|
|
| @offset_y@ [[type:double]] 0 Relative position of the shadow, a positive number moves the shadow down.<br />
|
|
Value is in the range 0 (no movement) to 1 (move by the height of the image)
|
|
| @blur_radius@ [[type:double]] 0 Amount to blur
|
|
| @alpha@ [[type:double]] 0 Opacity of the shadow, in the range 0 (fully transparent) to 1 (fully opaque)
|
|
| @color@ [[type:color]] black Color of the shadow
|
|
|
|
--Examples--
|
|
> drop_shadow("image4.png", offset_x: 0.08, offset_y: 0.08, alpha: 0.5) == [[Image]]
|
|
>>> drop_shadow(<img src="image4.png" alt='"image1.png"' style="border:1px solid black;vertical-align:middle;margin:1px;" />, offset_x: 0.08, offset_y: 0.08, alpha: 0.5) == <img src="image_drop_shadow_1.png" alt='"image_drop_shadow_1.png"' style="border:1px solid black;vertical-align:middle;margin:1px;" />
|
|
|
|
> drop_shadow("image4.png", offset_x: -0.1, offset_y: 0.1, alpha: 1, color: rgb(0,0,255), blur_radius: 0.05) == [[Image]]
|
|
>>> drop_shadow(<img src="image4.png" alt='"image1.png"' style="border:1px solid black;vertical-align:middle;margin:1px;" />, offset_x: -0.1, offset_y: 0.1, alpha: 1, color: rgb(0,0,255), blur_radius: 0.05) == <img src="image_drop_shadow_2.png" alt='"image_drop_shadow_1.png"' style="border:1px solid black;vertical-align:middle;margin:1px;" />
|