Home Tutorial Php Phpgd PHP GD image gamma correct

 
 

PHP GD image gamma correct
Posted on: November 16, 2009 at 12:00 AM
This example shows how to image gamma correct in php gd.

<?php

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

imagegammacorrect($im, 1.0, 1.537);

imagejpeg($im, 'php_gamma_corrected.jpeg');

echo("Image corrected and saved successfully.");

imagedestroy($im);

?>

After running the program you will get the following output

Related Tags for PHP GD image gamma correct:


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.