ImageBlur()

Blurs the image

Usage

BOOLEAN = ImageBlur( name, blurradius )
Argument Summary
name the image object
blurradius the amount to blur the image. default to 3 [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

ImageBlur(
   name=?, 
   blurradius=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageBlur( ArgumentCollection={
   name : ?, 
   blurradius : ?
} );