Friday, October 24, 2025
HomeLanguagesPHP | Gmagick levelimage() Function

PHP | Gmagick levelimage() Function

The Gmagick::levelimage() function is an inbuilt function in PHP which is used to adjust the levels of an image by scaling the colors falling between specified white and black points to the full available quantum range.

Syntax:

mixed Gmagick::levelimage( float $blackPoint, float $gamma,
        float $whitePoint, int $channel = Gmagick::CHANNEL_DEFAULT )

Parameters: This function accept four parameters as mentioned above and described below:

  • $blackPoint: It specifies the image black point.
  • $gamma: It specifies the image gamma.
  • $whitePoint: It specifies the image white point.
  • $channel (Optional): It specifies any channel constant that is valid for the channel mode.

Return Value: This function returns TRUE on success.

Exceptions: This function throws GmagickException on error.

Below given programs illustrate the Gmagick::levelimage() function in PHP:

Used Image:

Program 1 (Level an image):




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.png');
  
// Level the image
$gmagick->levelimage(300000, 8, 10);
   
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>


Output:

Program 2 (Level an drawing):




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.png');
   
// Create a GmagickDraw object
$draw = new GmagickDraw();
   
// Set the color
$draw->setFillColor('white');
   
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
   
// Set the fill color
$draw->setFillColor('red');
   
// Set the font size
$draw->setfontsize(50);
   
// Annotate a text
$draw->annotate(30, 100, 'neveropen');
   
// Use of drawimage function
$gmagick->drawImage($draw);
   
// Level the image
$gmagick->levelimage(0, 34, 30);
   
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>


Output:

Reference: https://www.php.net/manual/en/gmagick.levelimage.php

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS