(PHP 4, PHP 5)
imagegammacorrect — Apply a gamma correction to a GD image
Applies gamma correction to the given gd image given an input and an output gamma.
Ресурс на изображение, върнат от някоя от функциите за създаване на изображения като например imagecreatetruecolor().
The input gamma.
The output gamma.
Връща TRUE при успех или FALSE при неуспех.
Example #1 imagegammacorrect() usage
<?php
// Create image instance
$im = imagecreatefromgif('php.gif');
// Correct gamma, out = 1.537
imagegammacorrect($im, 1.0, 1.537);
// Save and free image
imagegif($im, './php_gamma_corrected.gif');
imagedestroy($im);
?>