blurGaussianBlur() - Media Method

The blurGaussianBlur() method applies a Gaussian blur effect to the image.

Note:  This function is “selection aware”—if a selection is made, the system applies the function based on the current selection. For more information about making selections, see selection() - Media Method.

Syntax

blurGaussianBlur(

[Radius @ <value 0.10..250>]

);

Parameters

Radius - specifies the extent of the effect. The default is 1.00.

Example

var image = new Media();

image.load(name @ "peppers.tga");

image.blurGaussianBlur(Radius @ 5);

image.save(type @ "jpeg");