sharpen — Sharpen an image

Description

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

Sharpen current image with an optional amount. Use values between 0 and 100.

Parameters

amount (optional)

The amount of the sharpening strength. Method accepts values between 0 and 100. Default: 10

Return Values

Instance of Intervention\Image\Image

Examples

  1. // create new Intervention Image
  2. $img = Image::make('public/foo.jpg');
  3. // sharpen image
  4. $img->sharpen(15);

See also