Open In App

PHP | Imagick brightnessContrastImage() Function

The Imagick::brightnessContrastImage() function is an inbuilt function in PHP which accepts three parameters like Brightness, Contrast and Image channel. It is used to change the brightness, contrast of an image. This function converts the brightness and contrast of image into slope and intercept and calls a polynomial function to apply the effect to the image.

Syntax:



bool Imagick::brightnessContrastImage( $brightness, $contrast, 
$channel )

Parameters: This function accepts three parameters as mentioned above and described below:

Return Value: This function returns True on success.



Original Image:

Below program illustrates the Imagick::brightnessContrastImage() function in PHP:

Program:




<?php 
// require_once('path/vendor/autoload.php'); 
   
// Create a new Imagick Object
$image = new Imagick(
  
// brightnessContrastImage Function
$image->brightnessContrastImage(12, 30);
   
header('Content-type: image/png');
  
// Display the output image
echo $image;
?>

Output:

Related Articles:

Reference: http://php.net/manual/en/imagick.brightnesscontrastimage.php

Article Tags :