|
This property holds a simple explanation of the role of the
setting within the effect.
To produce a list of all the settings within the Convolution
effect you might use the following code.
Set theFX = Server.CreateObject("ImageEffects.FX")
For Each theSetting In theFX("Convolution")
Response.Write theSetting.Description &
"<br>"
Next
Which might produce the following output.
Width of the filter in pixels
Height of the filter in pixels
Horizontal center of the filter from top left
Vertical center of the filter from top left
The
number of kernels
List of convolution values
|