GaussianBlur
Returns a pixmap with a Gaussian blur effect.
Syntax
-
GaussianBlur(pm[, amt[, n]])-
pmis a pixmap -
amtis a non-negative integer -
nis 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)
