Friday, June 12, 2026
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
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS