contrast — Change the contrast of an image

Description

public Intervention\Image\Image contrast(integer $level)

Changes the contrast of the current image by the given level. Use values between -100 for min. contrast 0 for no change and +100 for max. contrast.

Parameters

level

Level of contrast change applied to the current image. Use values between -100 and +100.

Return Values

Instance of Intervention\Image\Image

Examples

  1. // create new Intervention Image
  2. $img = Image::make('public/foo.jpg');
  3. // increase brightness of image
  4. $img->contrast(65);

See also