|
|
|
|
dShadow (Function) In french: dOmbre Adds a shadow effect on an image found in an Image variable.
MyImage is Image MyImage = "image.png" // Adds a shadow dShadow(MyImage)
// Adds a yellow shadow dShadow(MyImage, YellowToolhelp)
Syntax
dShadow(<Image> [, <Shadow color> [, <Shadow opacity> [, <Clipping>]]])
<Image>: Image variable Name of the Image variable that corresponds to the image to use. <Shadow color>: Optional integer Color of the shadow that must be added to the image. This color can correspond to:The shadow is black by default. <Shadow opacity>: Optional integer Percentage of opacity for the shadow to add (to be mixed with the existing pixels). This value is set to 100 by default: no opacity is applied. <Clipping>: Optional boolean - True if the shadow must be clipped,
- False (default value) otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|