$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 | int orbool |
true
|
Return types
Kirby\Cms\FileVersion
orKirby\Cms\File
orKirby\Filesystem\Asset
This method modifies the existing $file
object it is applied to and returns it again.
Parent class
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();
}