Image::blur
Apply a gaussian blur filter with a optional amount on the current image.
2.9M Downloads / Month
Open Source MIT License
2.9M Downloads / Month
Open Source MIT License
public Intervention\Image\Image blur([integer $amount])
Note: Performance intensive on larger amounts of blur with GD driver. Use with care.
The amount of the blur strength. Use values between 0
and 100
. Default: 1
Instance of Intervention\Image\Image
// create new Intervention Image $img = Image::make('public/foo.jpg'); // apply slight blur filter $img->blur(); // apply stronger blur $img->blur(15);