Skip to content

Kirby 5.0.0

$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

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();
}