Skip to content

Kirby 5.0.4

$file->blur()

Blurs the image by the given amount of pixels

$file->blur(int|bool $pixels = true): Kirby\Cms\FileVersion|Kirby\Cms\File|Kirby\Filesystem\Asset

Parameters

Name Type Default
$pixels intorbool true

Return types

Kirby\Cms\FileVersionorKirby\Cms\FileorKirby\Filesystem\Asset

This method modifies the existing $file object it is applied to and returns it again.

Parent class

Kirby\Cms\File

Blur Amount

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

echo $image->blur(30);

Examples

if ($image = $page->image()) {
    echo $image->blur();
}