(PHP 4, PHP 5, PHP 7, PHP 8)
imagegammacorrect — 对 GD 图像应用伽玛校正
在指定输入/输出伽玛的情况下,对给指定的 gd image
应用伽玛校正。
成功时返回 true
, 或者在失败时返回 false
。
版本 | 说明 |
---|---|
8.0.0 |
image 现在需要 GdImage 实例;之前需要有效的 gd resource。
|
示例 #1 imagegammacorrect() 用法
<?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);
?>