GaussianBlur
Returns a pixmap with a Gaussian blur effect.
Syntax
-
GaussianBlur(pm[, amt[, n]])
-
pm
is a pixmap -
amt
is a non-negative integer -
n
is a non-negative integer
-
Description
GaussianBlur(pm, amt, n)
returns the pixmap pm
with a Gaussian blur effect. amt
is the amount (defaults to 2
) and n
is the number of iterations (defaults to 6
).
Examples
pm ≔ ExampleData("harvestman")
GaussianBlur(pm)
GaussianBlur(pm, 25)