Image::sharpen
Sharpen the current image
2.9M Downloads / Month
Open Source MIT License
2.9M Downloads / Month
Open Source MIT License
public Intervention\Image\Image sharpen([integer $amount])
Sharpen current image with an optional amount. Use values between 0
and 100
.
The amount of the sharpening strength. Method accepts values between 0
and 100
. Default: 10
Instance of Intervention\Image\Image
// create new Intervention Image
$img = Image::make('public/foo.jpg');
// sharpen image
$img->sharpen(15);