This property holds the unique name of the Effect. This name can
be used to reference the effect.
For example:
Set theFX = Server.CreateObject("ImageEffects.FX")
theFX("Sharpen").Image = myCanvas.Image
theFX("Sharpen").Apply
To get a list of all the effects available you might use the
following code:
Set theFX = Server.CreateObject("ImageEffects.FX")
For Each theEffect In theFX
Response.Write theEffect.Name & "<br>"
Next
Which might result in the following output:
Median
Sharpen
Convolution
Gaussian Blur
Laplacian
Unsharp Mask
Despeckle
Brightness
Equalize
Contrast
Levels
AutoLevels
Histogram
Twirl
Pinch
Ripple
Wave
|