Saturday, November 22, 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
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS