imagegammacorrect()函数是PHP中的内置函数,用于在给定输入和输出伽马的情况下对给定图像应用伽马校正。
用法:
bool imagegammacorrect( resource $image, float $inputgamma, float $outputgamma )
参数:此函数接受上述和以下所述的三个参数:
- $image:它指定要处理的图像。
- $inputgamma:它指定输入伽玛。
- $outputgamma:它指定输出伽玛。
返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。
异常:该函数在出错时引发Exception。
下面给出的程序说明了PHP中的imagegammacorrect()函数:程序1:
<?php
// Create an image
$im = imagecreatefrompng('https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Change the image gamma
imagegammacorrect($im, 3, 1.3);
// Output to browser
header('Content-Type:image/png');
imagepng($im);
imagedestroy($im);
?>
输出:
程序2:
<?php
// Create an empty image
$im = imagecreatetruecolor(800, 250);
// Set the background to be light blue
imagefilledrectangle($im, 0, 0, 800, 250, imagecolorallocate($im, 0, 0, 180));
// Add text using a font from local
imagefttext($im, 80, 0, 50, 130, imagecolorallocate($im, 0, 150, 0), './Pacifico.ttf', 'GeeksforGeeks');
// Change the image gamma
imagegammacorrect($im, 3, 1.3);
// Output to browser
header('Content-Type:image/png');
imagepng($im);
imagedestroy($im);
?>
输出:
参考: https://www.php.net/manual/en/function.imagegammacorrect.php
相关用法
- p5.js pow()用法及代码示例
- p5.js second()用法及代码示例
- PHP each()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- CSS var()用法及代码示例
- p5.js day()用法及代码示例
- CSS url()用法及代码示例
- p5.js hue()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP Ds\Map put()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagegammacorrect() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。