public Intervention\Image\Image brightness(integer $level)
Changes the brightness of the current image by the given level. Use values between -100
for min. brightness 0
for no change and +100
for max. brightness.
Level of brightness change applied to the current image. Use values between -100
and +100
.
Instance of Intervention\Image\Image
// create new Intervention Image
$img = Image::make('public/foo.jpg');
// increase brightness of image
$img->brightness(35);
2023-09-08 更新 本文链接:https://upwqy.com/index.php/wiki/info/878.html