Home Tutorial Php Phpgd PHP GD Set image brightness

 
 

PHP GD Set image brightness
Posted on: November 12, 2009 at 12:00 AM
This example shows how to set brightness of an image in php gd.

<?php

$im = imagecreatefromjpeg('brightness.jpg');

 

if($im && imagefilter($im, IMG_FILTER_BRIGHTNESS, 100))

{

echo 'Image brightness changed.';

 

imagejpeg($im, 'brightness.jpg');

imagedestroy($im);

}

else

{

echo 'Image brightness change failed.';

}

?>

After running the program you will get the following output

Related Tags for PHP GD Set image brightness:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.