Friday, October 10, 2025
HomeLanguagesPHP | Imagick brightnessContrastImage() Function

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:

  • $brightness: This parameter is used to store the value of the brightness.
  • $contrast: This parameter is used to store the value of the contrast of the image.
  • $channel: This parameter is used to store the value of the channel.

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

RELATED ARTICLES

Most Popular

Dominic
32350 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6718 POSTS0 COMMENTS
Nicole Veronica
11880 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6838 POSTS0 COMMENTS
Ted Musemwa
7099 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS