blur — Blurs an image

Description

public Intervention\Image\Image blur([integer $amount])

Apply a gaussian blur filter with a certain amount on the current image.

Note: Performance intensive on larger amounts of blur. Use with care.

Parameters

amount (optional)

The amount of the blur strength. Usually values between 1 and 10 will do the work in acceptable time. Default: 1

Return Values

Instance of Intervention\Image\Image

Examples

  1. // create new Intervention Image
  2. $img = Image::make('public/foo.jpg');
  3. // apply slight blur filter
  4. $img->blur(1);
  5. // apply stronger blur
  6. $img->blur(15);

See also