|
Next we apply the blur to the image. Here we inset the area to
be blurred by 20 pixels on each side. We are assuming that the
image is at least 40 pixels wide.
Set theFX = Server.CreateObject("ImageEffects.FX")
Set theEffect = theFX("Gaussian Blur")
theEffect.Top = 20
theEffect.Left = 20
theEffect.Width = theCanv.Width - 40
theEffect.Height = theCanv.Height - 40
theEffect.Image = theCanv.Image
theEffect.Apply
|