$file->blur()

Applies a blur filter to the image

  • since: Kirby 2.3.0
  • return ($file)

Example

echo $page->image()->blur();

2.4.0 +

Blur Amount

You can modify the strength of the blur effect by passing an integer. The default value is 10.

echo $page->image()->blur(30);